diff options
Diffstat (limited to 'crypt.h')
-rw-r--r-- | crypt.h | 24 |
1 files changed, 24 insertions, 0 deletions
@@ -0,0 +1,24 @@ +#ifndef _CRYPT_H_ +#define _CRYPT_H_ + +#include <iostream> +#include "crypt_args.h" +#include "bigint/BigIntegerLibrary.hh" + +using namespace std; + +/* function prototypes */ +struct rsakey_t parse_key(FILE *); + +class crypt +{ + protected: + + private: + + public: + crypt() {}; +}; + +#endif + |