aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAris Adamantiadis <aris@0xbadc0de.be>2015-09-25 11:51:45 +0200
committerAris Adamantiadis <aris@0xbadc0de.be>2015-09-25 11:51:45 +0200
commit84a85803b4c83b8dac03b0d0aba58b48c98253e6 (patch)
tree49a81eadd56dce1152ac405c1ddc8b62dbe82369 /include
parentd46fe6a51c0e18a3d23e05c7cc81186acc319271 (diff)
downloadlibssh-84a85803b4c83b8dac03b0d0aba58b48c98253e6.tar.gz
libssh-84a85803b4c83b8dac03b0d0aba58b48c98253e6.tar.xz
libssh-84a85803b4c83b8dac03b0d0aba58b48c98253e6.zip
crypto: old-fashioned aes_ctr when evp_aes_ctr is missing
Diffstat (limited to 'include')
-rw-r--r--include/libssh/crypto.h1
1 files changed, 1 insertions, 0 deletions
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