diff options
| author | djm <> | 2010-10-01 22:59:01 +0000 |
|---|---|---|
| committer | djm <> | 2010-10-01 22:59:01 +0000 |
| commit | 8922d4bc4a8b8893d72a48deb2cdf58215f98505 (patch) | |
| tree | 939b752540947d33507b3acc48d76a8bfb7c3dc3 /src/lib/libcrypto/rc4/rc4.h | |
| parent | 76262f7bf9262f965142b1b2b2105cb279c5c696 (diff) | |
| download | openbsd-8922d4bc4a8b8893d72a48deb2cdf58215f98505.tar.gz openbsd-8922d4bc4a8b8893d72a48deb2cdf58215f98505.tar.bz2 openbsd-8922d4bc4a8b8893d72a48deb2cdf58215f98505.zip | |
resolve conflicts, fix local changes
Diffstat (limited to '')
| -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 |
