Deleted Added
full compact
SSL_CTX_set_cert_store.pod (100936) SSL_CTX_set_cert_store.pod (160814)
1=pod
2
3=head1 NAME
4
5SSL_CTX_set_cert_store, SSL_CTX_get_cert_store - manipulate X509 certificate verification storage
6
7=head1 SYNOPSIS
8
9 #include <openssl/ssl.h>
10
11 void SSL_CTX_set_cert_store(SSL_CTX *ctx, X509_STORE *store);
1=pod
2
3=head1 NAME
4
5SSL_CTX_set_cert_store, SSL_CTX_get_cert_store - manipulate X509 certificate verification storage
6
7=head1 SYNOPSIS
8
9 #include <openssl/ssl.h>
10
11 void SSL_CTX_set_cert_store(SSL_CTX *ctx, X509_STORE *store);
12 X509_STORE *SSL_CTX_get_cert_store(SSL_CTX *ctx);
12 X509_STORE *SSL_CTX_get_cert_store(const SSL_CTX *ctx);
13
14=head1 DESCRIPTION
15
16SSL_CTX_set_cert_store() sets/replaces the certificate verification storage
17of B<ctx> to/with B<store>. If another X509_STORE object is currently
18set in B<ctx>, it will be X509_STORE_free()ed.
19
20SSL_CTX_get_cert_store() returns a pointer to the current certificate

--- 37 unchanged lines hidden ---
13
14=head1 DESCRIPTION
15
16SSL_CTX_set_cert_store() sets/replaces the certificate verification storage
17of B<ctx> to/with B<store>. If another X509_STORE object is currently
18set in B<ctx>, it will be X509_STORE_free()ed.
19
20SSL_CTX_get_cert_store() returns a pointer to the current certificate

--- 37 unchanged lines hidden ---