AFIT/Source/builtin/break_ciphers.mli

8 lines
169 B
OCaml

(** Factoring Built-In Int Primes *)
(** Factors product of two primes.
@param key is public key of an RSA cryptosystem.
*)
val break : int * 'a -> (int * int)
;;