Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 924507 Details for
Bug 1127283
[openssl syntax with JSSE] AECDH cipher string behaves as ECDH without anonymous ciphers, should be the opposite (only anonymous ECDH)
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
Proposed patch
AECDH.patch (text/plain), 1.52 KB, created by
Radim Hatlapatka
on 2014-08-06 14:18:13 UTC
(
hide
)
Description:
Proposed patch
Filename:
MIME Type:
Creator:
Radim Hatlapatka
Created:
2014-08-06 14:18:13 UTC
Size:
1.52 KB
patch
obsolete
>Index: src/main/java/org/apache/tomcat/util/net/jsse/openssl/OpenSSLCipherConfigurationParser.java >=================================================================== >--- src/main/java/org/apache/tomcat/util/net/jsse/openssl/OpenSSLCipherConfigurationParser.java (revision 2482) >+++ src/main/java/org/apache/tomcat/util/net/jsse/openssl/OpenSSLCipherConfigurationParser.java (working copy) >@@ -20,6 +20,8 @@ > */ > package org.apache.tomcat.util.net.jsse.openssl; > >+import org.apache.tomcat.util.net.jsse.JSSELogger; >+ > import java.util.ArrayList; > import java.util.Arrays; > import java.util.Collection; >@@ -31,8 +33,6 @@ > import java.util.Map; > import java.util.Set; > >-import org.apache.tomcat.util.net.jsse.JSSELogger; >- > /** > * Class in charge with parsing openSSL expressions to define a list of ciphers. > * >@@ -412,7 +412,7 @@ > aliases.put("DSS", aliases.get(aDSS)); > addListAlias(aDH, filterByAuthentication(all, Collections.singleton(Authentication.DH))); > Set<Ciphers> aecdh = filterByKeyExchange(all, new HashSet<KeyExchange>(Arrays.asList(KeyExchange.ECDHe, KeyExchange.ECDHr))); >- aecdh.removeAll(filterByAuthentication(all, Collections.singleton(Authentication.aNULL))); >+ aecdh.retainAll(filterByAuthentication(all, Collections.singleton(Authentication.aNULL))); > addListAlias(AECDH, aecdh); > addListAlias(aECDH, filterByAuthentication(all, Collections.singleton(Authentication.ECDH))); > addListAlias(ECDSA, filterByAuthentication(all, Collections.singleton(Authentication.ECDSA)));
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 1127283
: 924507