summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/x509/x509_internal.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Deduplicate the time validation code between the legacy and newbeck2020-09-151-1/+4
| | | | | | verification code. ok jsing@
* Add new x509 certificate chain validator in x509_verify.cbeck2020-09-131-1/+36
| | | | | | | | | | | | | | | | | | | The new validator finds multiple validated chains to handle the modern PKI cases which may frequently have multiple paths via different intermediates to different roots. It is loosely based on golang's x509 validator This includes integration so that the new validator can be used via X509_verify_cert() as well as a new api x509_verify() which will return multiple chains (similar to go). The new validator is not enabled by default with this commit, this will be changed in a follow on commit. The new public API is not yet exposed, and will be finalized and exposed with a man page and a library minor bump later. ok tb@ inoguchi@ jsing@
* Add x509_constraints.c - a new implementation of x509 name constraints, withbeck2020-09-111-0/+90
regression tests. The use of the new name constraints is not yet activated in x509_vfy.c and will be activated in a follow on commit ok jsing@