diff options
author | cvs2svn <cvs2svn@FreeBSD.org> | 2005-06-05 15:41:58 +0000 |
---|---|---|
committer | cvs2svn <cvs2svn@FreeBSD.org> | 2005-06-05 15:41:58 +0000 |
commit | 3f3ba33bc62a7a98071ccbc1c8cc94e89bb5ade6 (patch) | |
tree | 84f267a53afefee5c9cce9a0cea06a90b98a6cea /crypto/openssh/moduli.h | |
parent | 4518870c7202d4098a97eae7a1d3820d84a4b0f4 (diff) |
Notes
Diffstat (limited to 'crypto/openssh/moduli.h')
-rw-r--r-- | crypto/openssh/moduli.h | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/crypto/openssh/moduli.h b/crypto/openssh/moduli.h deleted file mode 100644 index 9cd1cd3f86c0..000000000000 --- a/crypto/openssh/moduli.h +++ /dev/null @@ -1,23 +0,0 @@ -/* $OpenBSD: moduli.h,v 1.1 2003/07/28 09:49:56 djm Exp $ */ - -#include <sys/types.h> -#include <openssl/bn.h> - -/* - * Using virtual memory can cause thrashing. This should be the largest - * number that is supported without a large amount of disk activity -- - * that would increase the run time from hours to days or weeks! - */ -#define LARGE_MINIMUM (8UL) /* megabytes */ - -/* - * Do not increase this number beyond the unsigned integer bit size. - * Due to a multiple of 4, it must be LESS than 128 (yielding 2**30 bits). - */ -#define LARGE_MAXIMUM (127UL) /* megabytes */ - -/* Minimum number of primality tests to perform */ -#define TRIAL_MINIMUM (4) - -int gen_candidates(FILE *, int, int, BIGNUM *); -int prime_test(FILE *, FILE *, u_int32_t, u_int32_t); |