diff options
author | Jack Lloyd <[email protected]> | 2016-11-25 11:22:44 -0500 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2016-11-25 11:22:44 -0500 |
commit | e30d8d0fad3f9316ef31170ecec9d291288289f5 (patch) | |
tree | 453f6e29dbee78b414b37e9b57f46b7dfcea38b2 /doc/manual | |
parent | 6a3be8fa07d337b78a2d4aad5e45023fa6015ecd (diff) |
Address review comments from @cordney
Primarily doc updates but also expose some more logic in PKIX namespace,
overall_status and merge_revocation_status. This allows calling more or less all
of the logic used by the monolitic x509_path_validate in any way needed by an
application.
Add Certificate_Store_In_Memory::add_crl variant taking shared_ptr
Add optional Certificate_Store_In_Memory* pointer to check_crl_online,
valid CRLs are saved there.
Diffstat (limited to 'doc/manual')
-rw-r--r-- | doc/manual/tls.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/manual/tls.rst b/doc/manual/tls.rst index 2c8b7cf70..2100bb7d3 100644 --- a/doc/manual/tls.rst +++ b/doc/manual/tls.rst @@ -108,8 +108,8 @@ information about the connection. .. cpp::function:: std::chrono::milliseconds tls_verify_cert_chain_ocsp_timeout() const - Called by default `tls_verify_cert_cert` to set timeout for OCSP requests. - Return 0 to disable OCSP. Current default is 0. + Called by default `tls_verify_cert_chain` to set timeout for online OCSP requests + on the certificate chain. Return 0 to disable OCSP. Current default is 0. .. cpp:function:: std::string tls_server_choose_app_protocol(const std::vector<std::string>& client_protos) |