diff options
Diffstat (limited to 'src/lib/libcrypto/rc4/rc4.h')
-rw-r--r-- | src/lib/libcrypto/rc4/rc4.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/lib/libcrypto/rc4/rc4.h b/src/lib/libcrypto/rc4/rc4.h index 2d8620d33b..29d1acccf5 100644 --- a/src/lib/libcrypto/rc4/rc4.h +++ b/src/lib/libcrypto/rc4/rc4.h | |||
@@ -64,6 +64,8 @@ | |||
64 | #error RC4 is disabled. | 64 | #error RC4 is disabled. |
65 | #endif | 65 | #endif |
66 | 66 | ||
67 | #include <stddef.h> | ||
68 | |||
67 | #ifdef __cplusplus | 69 | #ifdef __cplusplus |
68 | extern "C" { | 70 | extern "C" { |
69 | #endif | 71 | #endif |
@@ -76,11 +78,8 @@ typedef struct rc4_key_st | |||
76 | 78 | ||
77 | 79 | ||
78 | const char *RC4_options(void); | 80 | const char *RC4_options(void); |
79 | #ifdef OPENSSL_FIPS | ||
80 | void private_RC4_set_key(RC4_KEY *key, int len, const unsigned char *data); | ||
81 | #endif | ||
82 | void RC4_set_key(RC4_KEY *key, int len, const unsigned char *data); | 81 | void RC4_set_key(RC4_KEY *key, int len, const unsigned char *data); |
83 | void RC4(RC4_KEY *key, unsigned long len, const unsigned char *indata, | 82 | void RC4(RC4_KEY *key, size_t len, const unsigned char *indata, |
84 | unsigned char *outdata); | 83 | unsigned char *outdata); |
85 | 84 | ||
86 | #ifdef __cplusplus | 85 | #ifdef __cplusplus |