Declared in <openssl/x509.h>
struct stack_st_X509_NAME;
| Name | Description |
|---|---|
SSL_CTX_get0_CA_list | Return the list of CA names the context will advertise to peers. |
SSL_CTX_get_client_CA_list | Return the stack of CA names the context will send when requesting a client certificate. |
SSL_add_dir_cert_subjects_to_stack | Append subject names from every certificate file in dir to stackCAs. |
SSL_add_file_cert_subjects_to_stack | Append subject names from PEM certificates in a file to an existing stack. |
SSL_add_store_cert_subjects_to_stack | Load certificate subjects from an OSSL_STORE URI into a name stack. |
SSL_dup_CA_list | Deep-copy a stack of CA subject names. |
SSL_get0_CA_list | Return the list of CA names configured to be sent to the peer. |
SSL_get0_peer_CA_list | Return the list of CA names the peer advertised for client authentication. |
SSL_get_client_CA_list | Return the CA names offered for client authentication on this connection. |
SSL_load_client_CA_file | Read certificates from a file and return a stack of their subject names. |
SSL_load_client_CA_file_ex | Read certificates from a file and return a stack of their subject names (provider-aware). |