From 2d1eb462fe119d34568e1652b8107fd552c15025 Mon Sep 17 00:00:00 2001
From: Kyle K <kylek389@gmail.com>
Date: Fri, 18 Feb 2011 19:10:16 -0600
Subject: begin crypt

---
 crypt.h | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)
 create mode 100644 crypt.h

(limited to 'crypt.h')

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
+
-- 
cgit v1.2.3