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 912705 Details for
Bug 1078204
SSL connector fails to start if cipher-suite="ALL"
[?]
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]
For the '+' case I missed
bz-1078204-intersection.patch (text/plain), 1.63 KB, created by
Emmanuel Hugonnet (ehsavoie)
on 2014-06-27 07:47:42 UTC
(
hide
)
Description:
For the '+' case I missed
Filename:
MIME Type:
Creator:
Emmanuel Hugonnet (ehsavoie)
Created:
2014-06-27 07:47:42 UTC
Size:
1.63 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 (révision 2466) >+++ src/main/java/org/apache/tomcat/util/net/jsse/openssl/OpenSSLCipherConfigurationParser.java (copie de travail) >@@ -62,6 +62,12 @@ > * matching existing ones. > */ > private static final String TO_END = "+"; >+ /** >+ * Lists of cipher suites can be combined in a single cipher string using the + character. >+ * This is used as a logical and operation. >+ * For example SHA1+DES represents all cipher suites containing the SHA1 and the DES algorithms. >+ */ >+ private static final String AND = "+"; > /** > * All ciphers by their openssl alias name. > */ >@@ -619,6 +625,17 @@ > break; > } else if (aliases.containsKey(element)) { > add(ciphers, element); >+ } else if (element.contains(AND)) { >+ String[] intersections = element.split("\\" + AND); >+ if(intersections.length > 0) { >+ List<Ciphers> result = aliases.get(intersections[0]); >+ for(int i = 1; i < intersections.length; i++) { >+ if(aliases.containsKey(intersections[i])) { >+ result.retainAll(aliases.get(intersections[i])); >+ } >+ } >+ ciphers.addAll(result); >+ } > } > } > ciphers.removeAll(removedCiphers);
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 1078204
:
893253
|
897144
|
898220
|
898235
|
910709
|
911706
|
911968
|
912705
|
912734
|
912744
|
913335
|
914449
|
914450