#ifndef _KEYGEN_H_ #define _KEYGEN_H_ #include #include #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