summaryrefslogtreecommitdiffstats
path: root/keygen.h
diff options
context:
space:
mode:
Diffstat (limited to 'keygen.h')
-rw-r--r--keygen.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/keygen.h b/keygen.h
new file mode 100644
index 0000000..9258265
--- /dev/null
+++ b/keygen.h
@@ -0,0 +1,25 @@
+#ifndef _KEYGEN_H_
+#define _KEYGEN_H_
+
+#include <iostream>
+#include <ctime>
+#include "keygen_args.h"
+
+/* use as am aid in prime number creation */
+#define LOW_BIT_ON 1 << 0
+#define FIRST_TWO_BITS_ON 3 << ((sizeof(unsigned short) * 8) - 2)
+
+using namespace std;
+
+class keygen
+{
+ protected:
+
+ private:
+
+ public:
+ keygen() {};
+};
+
+#endif
+