From d73f665edddfaa8f5a51e4c294d205f6e60a5854 Mon Sep 17 00:00:00 2001 From: Jakub Jelen Date: Wed, 2 Nov 2016 16:20:46 +0100 Subject: libcrypto: Remove AES_ctr128_encrypt() This is for OpenSSL 1.1.0. Signed-off-by: Jakub Jelen Reviewed-by: Andreas Schneider --- src/libcrypto.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/libcrypto.c') diff --git a/src/libcrypto.c b/src/libcrypto.c index ac950109..19065bd6 100644 --- a/src/libcrypto.c +++ b/src/libcrypto.c @@ -587,7 +587,11 @@ static void aes_ctr_encrypt(struct ssh_cipher_struct *cipher, void *in, void *ou * Same for num, which is being used to store the current offset in blocksize in CTR * function. */ +# if OPENSSL_VERSION_NUMBER >= 0x10100000L + CRYPTO_ctr128_encrypt(in, out, len, &cipher->aes_key->key, cipher->aes_key->IV, tmp_buffer, &num, (block128_f)AES_encrypt); +# else AES_ctr128_encrypt(in, out, len, &cipher->aes_key->key, cipher->aes_key->IV, tmp_buffer, &num); +# endif /* OPENSSL_VERSION_NUMBER >= 0x10100000L */ } static void aes_ctr_cleanup(struct ssh_cipher_struct *cipher){ -- cgit v1.2.3