summaryrefslogtreecommitdiffstats
path: root/crypt.h
diff options
context:
space:
mode:
authorKyle K <kylek389@gmail.com>2011-02-18 19:10:16 -0600
committerKamil Kaminski <kamilkss@gmail.com>2011-02-18 19:10:16 -0600
commit2d1eb462fe119d34568e1652b8107fd552c15025 (patch)
tree807211ec709b45b2339149adb6fbb5f51d47e569 /crypt.h
parentec58cdb26cc89df9b9bbb0e33fe843e5b4284955 (diff)
downloadrsacrypt-2d1eb462fe119d34568e1652b8107fd552c15025.tar.gz
rsacrypt-2d1eb462fe119d34568e1652b8107fd552c15025.tar.bz2
rsacrypt-2d1eb462fe119d34568e1652b8107fd552c15025.zip
begin crypt
Diffstat (limited to 'crypt.h')
-rw-r--r--crypt.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/crypt.h b/crypt.h
new file mode 100644
index 0000000..6721734
--- /dev/null
+++ b/crypt.h
@@ -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
+