summaryrefslogtreecommitdiffstats
path: root/crypt_args.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_args.h
parentec58cdb26cc89df9b9bbb0e33fe843e5b4284955 (diff)
downloadrsacrypt-2d1eb462fe119d34568e1652b8107fd552c15025.tar.gz
rsacrypt-2d1eb462fe119d34568e1652b8107fd552c15025.tar.bz2
rsacrypt-2d1eb462fe119d34568e1652b8107fd552c15025.zip
begin crypt
Diffstat (limited to 'crypt_args.h')
-rw-r--r--crypt_args.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/crypt_args.h b/crypt_args.h
new file mode 100644
index 0000000..f0a0ca9
--- /dev/null
+++ b/crypt_args.h
@@ -0,0 +1,17 @@
+#ifndef _KEYGEN_ARGS_
+#define _KEYGEN_ARGS_
+
+#include <cstdio>
+#include <cstdlib>
+#include <cstring>
+
+/* global variables */
+extern char *fname;
+extern char *keyfname;
+extern char *outfname;
+
+/* function protypes */
+int crypt_args(int, char **);
+
+#endif
+