Bugzilla – Attachment 453 Details for
Bug 675
cipher.c build error with openssl 0.9.5a
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Disable CTR modes for old OpenSSL
noctr.diff (text/plain), 658 bytes, created by
Damien Miller
on 2003-09-23 16:26:10 AEST
(
hide
)
Description:
Disable CTR modes for old OpenSSL
Filename:
MIME Type:
Creator:
Damien Miller
Created:
2003-09-23 16:26:10 AEST
Size:
658 bytes
patch
obsolete
>Index: cipher.c >=================================================================== >RCS file: /var/cvs/openssh/cipher.c,v >retrieving revision 1.63 >diff -u -r1.63 cipher.c >--- cipher.c 18 May 2003 10:53:59 -0000 1.63 >+++ cipher.c 23 Sep 2003 06:24:17 -0000 >@@ -87,9 +87,11 @@ > { "rijndael-cbc@lysator.liu.se", > SSH_CIPHER_SSH2, 16, 32, EVP_aes_256_cbc }, > #endif >+#if OPENSSL_VERSION_NUMBER >= 0x00906000L > { "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 }, >+#endif > > { NULL, SSH_CIPHER_ILLEGAL, 0, 0, NULL } > };
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 675
:
451
|
452
| 453