diff options
Diffstat (limited to '')
| -rw-r--r-- | src/lib/libcrypto/rc4/rc4.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/lib/libcrypto/rc4/rc4.h b/src/lib/libcrypto/rc4/rc4.h index 8722091f2e..dd90d9fde0 100644 --- a/src/lib/libcrypto/rc4/rc4.h +++ b/src/lib/libcrypto/rc4/rc4.h | |||
| @@ -73,10 +73,17 @@ 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 | ||
| 76 | } RC4_KEY; | 80 | } RC4_KEY; |
| 77 | 81 | ||
| 78 | 82 | ||
| 79 | const char *RC4_options(void); | 83 | 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 | ||
| 80 | void RC4_set_key(RC4_KEY *key, int len, const unsigned char *data); | 87 | void RC4_set_key(RC4_KEY *key, int len, const unsigned char *data); |
| 81 | void RC4(RC4_KEY *key, unsigned long len, const unsigned char *indata, | 88 | void RC4(RC4_KEY *key, unsigned long len, const unsigned char *indata, |
| 82 | unsigned char *outdata); | 89 | unsigned char *outdata); |
