summaryrefslogtreecommitdiffhomepage
path: root/nGenEx/Encrypt.h
diff options
context:
space:
mode:
Diffstat (limited to 'nGenEx/Encrypt.h')
-rw-r--r--nGenEx/Encrypt.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/nGenEx/Encrypt.h b/nGenEx/Encrypt.h
new file mode 100644
index 0000000..9024740
--- /dev/null
+++ b/nGenEx/Encrypt.h
@@ -0,0 +1,38 @@
+/* Project nGenEx
+ Destroyer Studios LLC
+ Copyright © 1997-2004. All Rights Reserved.
+
+ SUBSYSTEM: nGenEx.lib
+ FILE: Encrypt.h
+ AUTHOR: John DiCamillo
+
+
+ OVERVIEW
+ ========
+ Simple Encryption / Decryption class
+*/
+
+
+#ifndef Encrypt_h
+#define Encrypt_h
+
+#include "Types.h"
+#include "Text.h"
+
+// +-------------------------------------------------------------------+
+
+class Encryption
+{
+public:
+ // private key encryption / decryption of
+ // arbitrary blocks of data
+ static Text Encrypt(Text block);
+ static Text Decrypt(Text block);
+
+ // encode / decode binary blocks into
+ // ascii strings for use in text files
+ static Text Encode(Text block);
+ static Text Decode(Text block);
+};
+
+#endif Encrypt_h \ No newline at end of file