aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/x509/cert_status.cpp
Commit message (Collapse)AuthorAgeFilesLines
* OCSP softfail revocation checkMathieu Souchaud2018-03-011-0/+4
|
* Fix various x509 path validation bugs + path building with ambiguous DNsFabian Weissberg2017-12-201-0/+13
| | | | Signed-off-by: Fabian Weissberg <[email protected]>
* Expose a function returning a status code for verifing X509 objectsJack Lloyd2017-12-191-1/+6
| | | | | | | | | The versions returning bool just tell us if it could be verified but don't indicate the problem, everything got binned into "signature error" during verification. Now in the event that the params were invalid, or the signature algorithm couldn't be found, report that as a specific error. See GH #1362
* Add a test for to_string(Certificate_Status_Code)Jack Lloyd2016-11-251-5/+5
|
* Explicitly number all Certificate_Status_Code enum valuesJack Lloyd2016-11-231-0/+100
Add a to_string function for this type.