summaryrefslogtreecommitdiffstats
path: root/crypt.h
diff options
context:
space:
mode:
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
+