*** UNIX MANUAL PAGE BROWSER ***

A Nergahak database for man pages research.

Navigation

Directory Browser

1Browse 4.4BSD4.4BSD
1Browse Digital UNIXDigital UNIX 4.0e
1Browse FreeBSDFreeBSD 14.3
1Browse MINIXMINIX 3.4.0rc6-d5e4fc0
1Browse NetBSDNetBSD 10.1
1Browse OpenBSDOpenBSD 7.7
1Browse UNIX v7Version 7 UNIX
1Browse UNIX v10Version 10 UNIX

Manual Page Search

Manual Page Result

0 Command: SSL_load_client_CA_file | Section: 3 | Source: MINIX | File: SSL_load_client_CA_file.3
SSL_load_client_CA_file(3) OpenSSL SSL_load_client_CA_file(3) NAME SSL_load_client_CA_file - load certificate names from file LIBRARY libcrypto, -lcrypto SYNOPSIS #include <openssl/ssl.h> STACK_OF(X509_NAME) *SSL_load_client_CA_file(const char *file); DESCRIPTION SSL_load_client_CA_file() reads certificates from file and returns a STACK_OF(X509_NAME) with the subject names found. NOTES SSL_load_client_CA_file() reads a file of PEM formatted certificates and extracts the X509_NAMES of the certificates found. While the name suggests the specific usage as support function for SSL_CTX_set_client_CA_list(3), it is not limited to CA certificates. EXAMPLES Load names of CAs from file and use it as a client CA list: SSL_CTX *ctx; STACK_OF(X509_NAME) *cert_names; ... cert_names = SSL_load_client_CA_file("/path/to/CAfile.pem"); if (cert_names != NULL) SSL_CTX_set_client_CA_list(ctx, cert_names); else error_handling(); ... RETURN VALUES The following return values can occur: NULL The operation failed, check out the error stack for the reason. Pointer to STACK_OF(X509_NAME) Pointer to the subject names of the successfully read certificates. SEE ALSO ssl(3), SSL_CTX_set_client_CA_list(3) 1.0.1n 2009-07-19 SSL_load_client_CA_file(3)

Navigation Options