Bugzilla – Attachment 1246 Details for
Bug 1291
aes256-ctr, aes192-ctr, arcfour256 broken with OpenSSL 0.9.8e
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Work around openssl 0.9.8e bug in compat layer
openssh-ssl098e-workaround.patch (text/plain), 785 bytes, created by
Darren Tucker
on 2007-03-04 15:56:38 AEDT
(
hide
)
Description:
Work around openssl 0.9.8e bug in compat layer
Filename:
MIME Type:
Creator:
Darren Tucker
Created:
2007-03-04 15:56:38 AEDT
Size:
785 bytes
patch
obsolete
>Index: openbsd-compat/openssl-compat.h >=================================================================== >RCS file: /usr/local/src/security/openssh/cvs/openssh_cvs/openbsd-compat/openssl-compat.h,v >retrieving revision 1.6 >diff -u -p -r1.6 openssl-compat.h >--- openbsd-compat/openssl-compat.h 22 Feb 2006 11:24:47 -0000 1.6 >+++ openbsd-compat/openssl-compat.h 4 Mar 2007 03:31:09 -0000 >@@ -46,6 +46,11 @@ extern const EVP_CIPHER *evp_acss(void); > # endif > #endif > >+/* OpenSSL 0.9.8e returns cipher key len not context key len */ >+#if (OPENSSL_VERSION_NUMBER == 0x0090805fL) >+# define EVP_CIPHER_CTX_key_length(c) ((c)->key_len) >+#endif >+ > /* > * We overload some of the OpenSSL crypto functions with ssh_* equivalents > * which cater for older and/or less featureful OpenSSL version.
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
Flags:
djm
:
ok+
Actions:
View
|
Diff
Attachments on
bug 1291
:
1244
|
1245
| 1246 |
1252