summaryrefslogtreecommitdiffstats
path: root/keygen.h
blob: 925826560f67680b61b11eb7a7f4fd49ffde10bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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