summaryrefslogtreecommitdiffstats
path: root/crypto/openssh/moduli.h
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/openssh/moduli.h')
-rw-r--r--crypto/openssh/moduli.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/crypto/openssh/moduli.h b/crypto/openssh/moduli.h
new file mode 100644
index 0000000..9cd1cd3
--- /dev/null
+++ b/crypto/openssh/moduli.h
@@ -0,0 +1,23 @@
+/* $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);
OpenPOWER on IntegriCloud