aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/tls/tls_algos.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Remove support for SHA-1 signatures in TLS 1.2Jack Lloyd2021-02-131-19/+0
|
* Remove support for DHE_PSKJack Lloyd2020-11-241-5/+0
| | | | Retains PSK and ECDHE_PSK
* Remove SRP support from TLSJack Lloyd2020-11-231-5/+0
|
* Remove TLS support for DSA certificates/ciphersuitesJack Lloyd2020-11-211-37/+0
|
* Remove support for TLS anonymous DH/ECDH suitesJack Lloyd2020-11-211-4/+0
|
* Fix TLS signature algorithm intoleranceJack Lloyd2018-10-161-4/+4
| | | | GH #1708
* Fix interop bug in TLS serverJack Lloyd2018-04-081-0/+29
| | | | | The connection would fail if the client advertised any signature algorithm we did not support (eg RSA/SHA-224)
* Remove house curve supportJack Lloyd2018-02-131-5/+0
|
* Use enums for TLS key exchange group paramsJack Lloyd2018-02-131-0/+37
|
* Move generic TLS tests to test_tls.cppJack Lloyd2018-01-281-0/+2
| | | | | | Leaves unit_tls.cpp for the handshake level tests. Add some basic tests of the string<->enum conversions in tls_algos.h
* Reorder signature scheme listJack Lloyd2018-01-281-12/+20
| | | | Now PSS shows up first and we negotiate it by default ;)
* Use enums to represent TLS signature and kex algorithms.Jack Lloyd2018-01-281-0/+355
Adds support for PSS signatures (currently verifying only).