aboutsummarylogtreecommitdiffstats
path: root/rc4.h
diff options
context:
space:
mode:
Diffstat (limited to 'rc4.h')
-rw-r--r--rc4.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/rc4.h b/rc4.h
new file mode 100644
index 000000000000..8bf07e223271
--- /dev/null
+++ b/rc4.h
@@ -0,0 +1,12 @@
+#ifndef RC4_H
+#define RC4_H
+
+char* getPassword();
+
+void keyExchange(int keySchedule[], int len, const unsigned char* key);
+
+char* prga(int keySchedule[], int len);
+
+void rc4(const unsigned char output[], const unsigned char message[], FILE* out, long int len);
+
+#endif \ No newline at end of file