summaryrefslogtreecommitdiffstats
path: root/keygen_args.h
diff options
context:
space:
mode:
authorKyle K <kylek389@gmail.com>2011-02-12 23:20:03 -0600
committerKamil Kaminski <kamilkss@gmail.com>2011-02-12 23:20:03 -0600
commit6b9ca0f16a0a4b6eca1a2f7c1ee000de2289aa93 (patch)
tree3a22cd1cd8d51939e730a075f780a41e3cbe59d4 /keygen_args.h
parentdea256a20d8d771fcce8bd2409bc4b7a9c5081e9 (diff)
downloadsandbox-6b9ca0f16a0a4b6eca1a2f7c1ee000de2289aa93.tar.gz
sandbox-6b9ca0f16a0a4b6eca1a2f7c1ee000de2289aa93.tar.bz2
sandbox-6b9ca0f16a0a4b6eca1a2f7c1ee000de2289aa93.zip
add keygen_args.c, fallout from CS340 project
Diffstat (limited to 'keygen_args.h')
-rw-r--r--keygen_args.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/keygen_args.h b/keygen_args.h
new file mode 100644
index 0000000..c1144e5
--- /dev/null
+++ b/keygen_args.h
@@ -0,0 +1,16 @@
+#ifndef _KEYGEN_ARGS_
+#define _KEYGEN_ARGS_
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+
+/* global variables */
+extern char *pubkey;
+extern char *prikey;
+
+/* function protypes */
+int keygen_args(int, char **);
+
+#endif
+