Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add server support for DHE ciphers | Christian Heimes | 2016-02-29 | 1 | -0/+2 |
| | | | | | | | | Similar patch was provided by Vitezslav Cizek <vcizek@suse.com> Heavily modified by Rob Crittenden <rcritten@redhat.com> https://fedorahosted.org/mod_nss/ticket/15 | ||||
* | Fix compatibility with RHEL 6.x (Apache 2.2.x and NSS 3.15.1) | Rob Crittenden | 2015-10-02 | 1 | -0/+21 |
| | |||||
* | NSS added support for some SHA384 ciphers, add them | Rob Crittenden | 2015-10-02 | 1 | -2/+7 |
| | | | | | | | I don't want to assume these ciphers are available in every distro so I'm bending over backwards a bit to check for availablility and get the defines right for the python cipher tests. | ||||
* | Fix logical AND support in OpenSSL cipher compatibility | Rob Crittenden | 2015-07-22 | 1 | -29/+32 |
| | | | | | | | | | | | | | | | | | | | | | | | | | The + operator didn't perform properly at all. It is supposed to be used either for logical AND to combine two cipher suites or to move ciphers to the end of the list. Given that NSS doesn't support cipher ordering + is a no-op in this case. Also add in a slew of missing aliases: kRSA, aRSA, EDH, ECDH, kECDHe, kECDHr, kEECDH, aECDH, aNULL, AESGCM, AES128, AES256, CAMELLIA, CAMELLIA128, CAMELLIA256. Fix the definition of TLSv1.2. Define some ciphers as unimplemented in NSS. Renumber the mask/protocol/strength values to ensure uniqueness. Replace the existing cipher test to one that compares the output of the NSS-generated cipher string with the openssl generated string. There are a lot of restrictions on the openssl string since so much isn't either implemented or needed for mod_nss. Add a new openssl-compatible cipher request test to the server tests. | ||||
* | Add compatibility for mod_ssl-style cipher definitions | Rob Crittenden | 2014-12-02 | 1 | -0/+90 |
- Add Camelia ciphers - Remove Fortezza ciphers - Add TLSv1.2-specific ciphers Resolves BZ: #862938 |