diff options
Diffstat (limited to 'src/lib/libcrypto/aes/aes_ofb.c')
-rw-r--r-- | src/lib/libcrypto/aes/aes_ofb.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/lib/libcrypto/aes/aes_ofb.c b/src/lib/libcrypto/aes/aes_ofb.c index 50bf0b8325..f5a35b20c5 100644 --- a/src/lib/libcrypto/aes/aes_ofb.c +++ b/src/lib/libcrypto/aes/aes_ofb.c | |||
@@ -52,9 +52,10 @@ | |||
52 | #include <openssl/aes.h> | 52 | #include <openssl/aes.h> |
53 | #include <openssl/modes.h> | 53 | #include <openssl/modes.h> |
54 | 54 | ||
55 | void AES_ofb128_encrypt(const unsigned char *in, unsigned char *out, | 55 | void |
56 | size_t length, const AES_KEY *key, | 56 | AES_ofb128_encrypt(const unsigned char *in, unsigned char *out, size_t length, |
57 | unsigned char *ivec, int *num) | 57 | const AES_KEY *key, unsigned char *ivec, int *num) |
58 | { | 58 | { |
59 | CRYPTO_ofb128_encrypt(in,out,length,key,ivec,num,(block128_f)AES_encrypt); | 59 | CRYPTO_ofb128_encrypt(in, out, length, key, ivec, num, |
60 | (block128_f)AES_encrypt); | ||
60 | } | 61 | } |