summaryrefslogtreecommitdiffstats
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 8744cb7b..c13ff586 100644
--- a/cipher.c
+++ b/cipher.c
@@ -98,7 +98,7 @@ struct Cipher {
{ "rijndael-cbc@lysator.liu.se",
SSH_CIPHER_SSH2, 16, 32, EVP_aes_256_cbc },
#endif
-#if OPENSSL_VERSION_NUMBER >= 0x00906000L
+#if OPENSSL_VERSION_NUMBER >= 0x00905000L
{ "aes128-ctr", SSH_CIPHER_SSH2, 16, 16, evp_aes_128_ctr },
{ "aes192-ctr", SSH_CIPHER_SSH2, 16, 24, evp_aes_128_ctr },
{ "aes256-ctr", SSH_CIPHER_SSH2, 16, 32, evp_aes_128_ctr },