Lines Matching refs:private

54 These functions load the certificates and private keys into the SSL_CTX
91 SSL_CTX_use_PrivateKey() adds B<pkey> as private key to B<ctx>. B<ctx> B<MUST NOT> be NULL.
92 SSL_CTX_use_RSAPrivateKey() adds the private key B<rsa> of type RSA
93 to B<ctx>. SSL_use_PrivateKey() adds B<pkey> as private key to B<ssl>;
94 SSL_use_RSAPrivateKey() adds B<rsa> as private key of type RSA to B<ssl>.
95 If a certificate has already been set and the private key does not belong
96 to the certificate an error is returned. To change a [certificate/private-key]
98 SSL_CTX_use_certificate() before setting the private key with
103 certificate B<x>, private key B<key>, and certificate B<chain> onto the
104 corresponding B<ssl> or B<ctx>. The B<pkey> argument must be the private
107 If B<override> is non-0, then the certificate, private key and chain certs
109 the private key. This is intended to be used with hardware (via the ENGINE
110 interface) that stores the private key securely, such that it cannot be
112 (twice if there is no private key); it is not copied nor duplicated. This
113 allows all private key validations checks to succeed without an actual
114 private key being assigned via SSL_CTX_use_PrivateKey(), etc.
116 SSL_CTX_use_PrivateKey_ASN1() adds the private key of type B<pk>
118 SSL_CTX_use_RSAPrivateKey_ASN1() adds the private key of type RSA
120 SSL_use_PrivateKey_ASN1() and SSL_use_RSAPrivateKey_ASN1() add the private
123 SSL_CTX_use_PrivateKey_file() adds the first private key found in
124 B<file> to B<ctx>. The formatting B<type> of the private key must be specified
126 SSL_CTX_use_RSAPrivateKey_file() adds the first private RSA key found in
127 B<file> to B<ctx>. SSL_use_PrivateKey_file() adds the first private key found
128 in B<file> to B<ssl>; SSL_use_RSAPrivateKey_file() adds the first private
131 SSL_CTX_check_private_key() checks the consistency of a private key with
141 The internal certificate store of OpenSSL can hold several private
145 When reading certificates and private keys from file, files of type
147 one certificate or private key, consequently
167 The private keys loaded from file can be encrypted. In order to successfully
177 functions to set a new private key will replace any private key that has already
180 private key to confirm that the certificate and key match.