From 84a85803b4c83b8dac03b0d0aba58b48c98253e6 Mon Sep 17 00:00:00 2001 From: Aris Adamantiadis Date: Fri, 25 Sep 2015 11:51:45 +0200 Subject: crypto: old-fashioned aes_ctr when evp_aes_ctr is missing --- include/libssh/crypto.h | 1 + 1 file changed, 1 insertion(+) (limited to 'include/libssh') diff --git a/include/libssh/crypto.h b/include/libssh/crypto.h index eed93710..e370c748 100644 --- a/include/libssh/crypto.h +++ b/include/libssh/crypto.h @@ -124,6 +124,7 @@ struct ssh_cipher_struct { gcry_cipher_hd_t *key; #elif defined HAVE_LIBCRYPTO struct ssh_3des_key_schedule *des3_key; + struct ssh_aes_key_schedule *aes_key; const EVP_CIPHER *cipher; EVP_CIPHER_CTX ctx; #endif -- cgit