summaryrefslogtreecommitdiff
path: root/src/lib/libssl/ssl_sigalgs.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Unbreak legacy ciphers for prior to 1.1 by setting having a legacybeck2018-11-161-1/+4
| | | | | sigalg for MD5_SHA1 and using it as the non sigalgs default ok jsing@
* Add check function to verify that pkey is usable with a sigalg.beck2018-11-111-1/+2
| | | | | Include check for appropriate RSA key size when used with PSS. ok tb@
* Remove dead codebeck2018-11-101-2/+1
| | | | ok jsing@
* Stop keeping track of sigalgs by guessing it from digest and pkey,beck2018-11-101-2/+2
| | | | | | just keep the sigalg around so we can remember what we actually decided to use. ok jsing@
* Ensure we only choose sigalgs from our prefernce list, not the whole listbeck2018-11-091-2/+2
| | | | ok jsing@
* Add the ability to have a separate priority list for sigalgs.beck2018-11-091-2/+5
| | | | | Add a priority list for tls 1.2 ok jsing@
* Add header guards and hidden declarations.jsing2018-11-091-1/+9
|
* Reimplement the sigalgs processing code into a new implementationbeck2018-11-091-0/+69
that will be usable with TLS 1.3 with less eye bleed. ok jsing@ tb@