X-Git-Url: https://code.wpia.club/?a=blobdiff_plain;f=lib%2Fopenssl%2Fdoc%2Fssl%2FSSL_CTX_set_client_CA_list.pod;h=0252e7b5216bf16054efc81ceafc7fcd9cf539d1;hb=02ed66432c92de70694700164f986190aad3cbc5;hp=4965385e97ae1f087bbd28a4d763725e806ff839;hpb=9ff1530871deeb0f7eaa35ca0db6630724045e4a;p=cassiopeia.git diff --git a/lib/openssl/doc/ssl/SSL_CTX_set_client_CA_list.pod b/lib/openssl/doc/ssl/SSL_CTX_set_client_CA_list.pod index 4965385..0252e7b 100644 --- a/lib/openssl/doc/ssl/SSL_CTX_set_client_CA_list.pod +++ b/lib/openssl/doc/ssl/SSL_CTX_set_client_CA_list.pod @@ -9,7 +9,7 @@ client certificate =head1 SYNOPSIS #include - + void SSL_CTX_set_client_CA_list(SSL_CTX *ctx, STACK_OF(X509_NAME) *list); void SSL_set_client_CA_list(SSL *s, STACK_OF(X509_NAME) *list); int SSL_CTX_add_client_CA(SSL_CTX *ctx, X509 *cacert); @@ -42,11 +42,11 @@ This list must explicitly be set using SSL_CTX_set_client_CA_list() for B and SSL_set_client_CA_list() for the specific B. The list specified overrides the previous setting. The CAs listed do not become trusted (B only contains the names, not the complete certificates); use -L +L to additionally load them for verification. If the list of acceptable CAs is compiled in a file, the -L +L function can be used to help importing the necessary data. SSL_CTX_add_client_CA() and SSL_add_client_CA() can be used to add additional @@ -82,13 +82,22 @@ The operation succeeded. Scan all certificates in B and list them as acceptable CAs: - SSL_CTX_set_client_CA_list(ctx,SSL_load_client_CA_file(CAfile)); + SSL_CTX_set_client_CA_list(ctx, SSL_load_client_CA_file(CAfile)); =head1 SEE ALSO -L, -L, -L, -L +L, +L, +L, +L + +=head1 COPYRIGHT + +Copyright 2000-2016 The OpenSSL Project Authors. All Rights Reserved. + +Licensed under the OpenSSL license (the "License"). You may not use +this file except in compliance with the License. You can obtain a copy +in the file LICENSE in the source distribution or at +L. =cut