Lines Matching refs:chain
11 chain certificate processing
41 SSL_CTX_set0_chain() and SSL_CTX_set1_chain() set the certificate chain
45 certificate B<x509> to the chain associated with the current certificate of
48 SSL_CTX_get0_chain_certs() retrieves the chain associated with the current
51 SSL_CTX_clear_chain_certs() clears any existing chain associated with the
55 SSL_CTX_build_cert_chain() builds the certificate chain for B<ctx>.
56 Normally this uses the chain store
57 or the verify store if the chain store is not set.
58 If the function is successful the built chain will replace any existing chain.
60 existing chain certificates as untrusted CAs, B<SSL_BUILD_CHAIN_FLAG_NO_ROOT>
61 to omit the root CA from the built chain, B<SSL_BUILD_CHAIN_FLAG_CHECK> to
62 use all existing chain certificates only to build the chain (effectively
67 Details of the chain building process are described in
98 increment the reference count of the supplied certificate or chain so it must
100 not increment reference counts and the supplied certificate or chain
109 One chain can be set for each key type supported by a server. So, for example,
126 efficient than the automatic chain building as it is only performed once.
127 Automatic chain building is performed on each new session.