diff options
author | Kyle K <kylek389@gmail.com> | 2011-02-18 19:10:16 -0600 |
---|---|---|
committer | Kamil Kaminski <kamilkss@gmail.com> | 2011-02-18 19:10:16 -0600 |
commit | 2d1eb462fe119d34568e1652b8107fd552c15025 (patch) | |
tree | 807211ec709b45b2339149adb6fbb5f51d47e569 /crypt.h | |
parent | ec58cdb26cc89df9b9bbb0e33fe843e5b4284955 (diff) | |
download | rsacrypt-2d1eb462fe119d34568e1652b8107fd552c15025.tar.gz rsacrypt-2d1eb462fe119d34568e1652b8107fd552c15025.tar.bz2 rsacrypt-2d1eb462fe119d34568e1652b8107fd552c15025.zip |
begin crypt
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 + |