diff options
Diffstat (limited to 'src/lib/libcrypto/rc4/rc4.h')
-rw-r--r-- | src/lib/libcrypto/rc4/rc4.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/lib/libcrypto/rc4/rc4.h b/src/lib/libcrypto/rc4/rc4.h index dd90d9fde0..8722091f2e 100644 --- a/src/lib/libcrypto/rc4/rc4.h +++ b/src/lib/libcrypto/rc4/rc4.h | |||
@@ -73,17 +73,10 @@ typedef struct rc4_key_st | |||
73 | { | 73 | { |
74 | RC4_INT x,y; | 74 | RC4_INT x,y; |
75 | RC4_INT data[256]; | 75 | RC4_INT data[256]; |
76 | #if defined(__ia64) || defined(__ia64__) || defined(_M_IA64) | ||
77 | /* see crypto/rc4/asm/rc4-ia64.S for further details... */ | ||
78 | RC4_INT pad[512-256-2]; | ||
79 | #endif | ||
80 | } RC4_KEY; | 76 | } RC4_KEY; |
81 | 77 | ||
82 | 78 | ||
83 | const char *RC4_options(void); | 79 | const char *RC4_options(void); |
84 | #ifdef OPENSSL_FIPS | ||
85 | void private_RC4_set_key(RC4_KEY *key, int len, const unsigned char *data); | ||
86 | #endif | ||
87 | void RC4_set_key(RC4_KEY *key, int len, const unsigned char *data); | 80 | void RC4_set_key(RC4_KEY *key, int len, const unsigned char *data); |
88 | void RC4(RC4_KEY *key, unsigned long len, const unsigned char *indata, | 81 | void RC4(RC4_KEY *key, unsigned long len, const unsigned char *indata, |
89 | unsigned char *outdata); | 82 | unsigned char *outdata); |