summaryrefslogtreecommitdiff
path: root/cipher.c
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2004-02-07 12:29:39 +1100
committerDarren Tucker <dtucker@zip.com.au>2004-02-07 12:29:39 +1100
commit693f8a8aae5b79360f13f478c09235061aa59647 (patch)
tree7598aefae46df36be5c1a825c702caf0d6e81e03 /cipher.c
parentfc57f71fb1106a5b1b6d37cb595a21d36a049e7e (diff)
- (dtucker) [cipher.c] enable AES counter modes with OpenSSL 0.9.5.
ok djm@, markus@
Diffstat (limited to 'cipher.c')
-rw-r--r--cipher.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cipher.c b/cipher.c
index 8744cb7b7..c13ff5862 100644
--- a/cipher.c
+++ b/cipher.c
@@ -98,7 +98,7 @@ struct Cipher {
98 { "rijndael-cbc@lysator.liu.se", 98 { "rijndael-cbc@lysator.liu.se",
99 SSH_CIPHER_SSH2, 16, 32, EVP_aes_256_cbc }, 99 SSH_CIPHER_SSH2, 16, 32, EVP_aes_256_cbc },
100#endif 100#endif
101#if OPENSSL_VERSION_NUMBER >= 0x00906000L 101#if OPENSSL_VERSION_NUMBER >= 0x00905000L
102 { "aes128-ctr", SSH_CIPHER_SSH2, 16, 16, evp_aes_128_ctr }, 102 { "aes128-ctr", SSH_CIPHER_SSH2, 16, 16, evp_aes_128_ctr },
103 { "aes192-ctr", SSH_CIPHER_SSH2, 16, 24, evp_aes_128_ctr }, 103 { "aes192-ctr", SSH_CIPHER_SSH2, 16, 24, evp_aes_128_ctr },
104 { "aes256-ctr", SSH_CIPHER_SSH2, 16, 32, evp_aes_128_ctr }, 104 { "aes256-ctr", SSH_CIPHER_SSH2, 16, 32, evp_aes_128_ctr },