summaryrefslogtreecommitdiff
path: root/protocols/WhatsApp/src/OpenSSL/rc4.h
diff options
context:
space:
mode:
Diffstat (limited to 'protocols/WhatsApp/src/OpenSSL/rc4.h')
-rw-r--r--protocols/WhatsApp/src/OpenSSL/rc4.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/protocols/WhatsApp/src/OpenSSL/rc4.h b/protocols/WhatsApp/src/OpenSSL/rc4.h
deleted file mode 100644
index 91376bedd3..0000000000
--- a/protocols/WhatsApp/src/OpenSSL/rc4.h
+++ /dev/null
@@ -1,23 +0,0 @@
-#ifndef HEADER_RC4_LOCL_H
-#define HEADER_RC4_LOCL_H
-
-typedef int RC4_INT;
-
-typedef struct rc4_key_st
- {
- RC4_INT x,y;
- RC4_INT data[256];
- } RC4_KEY;
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-void RC4_set_key(RC4_KEY *key, int len, const unsigned char *data);
-void RC4(RC4_KEY *key, unsigned long len, const unsigned char *indata, unsigned char *outdata);
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif