Lines Matching full:private

189 These functions load the certificates and private keys into the \s-1SSL_CTX\s0
226 \&\fBSSL_CTX_use_PrivateKey()\fR adds \fBpkey\fR as private key to \fBctx\fR.
227 \&\fBSSL_CTX_use_RSAPrivateKey()\fR adds the private key \fBrsa\fR of type \s-1RSA\s0
228 to \fBctx\fR. \fBSSL_use_PrivateKey()\fR adds \fBpkey\fR as private key to \fBssl\fR;
229 \&\fBSSL_use_RSAPrivateKey()\fR adds \fBrsa\fR as private key of type \s-1RSA\s0 to \fBssl\fR.
230 If a certificate has already been set and the private key does not belong
231 to the certificate an error is returned. To change a [certificate/private\-key]
233 \&\fBSSL_CTX_use_certificate()\fR before setting the private key with
237 certificate \fBx\fR, private key \fBkey\fR, and certificate \fBchain\fR onto the
238 corresponding \fBssl\fR or \fBctx\fR. The \fBpkey\fR argument must be the private
241 If \fBoverride\fR is non\-0, then the certificate, private key and chain certs
243 the private key. This is intended to be used with hardware (via the \s-1ENGINE\s0
244 interface) that stores the private key securely, such that it cannot be
246 (twice if there is no private key); it is not copied nor duplicated. This
247 allows all private key validations checks to succeed without an actual
248 private key being assigned via \fBSSL_CTX_use_PrivateKey()\fR, etc.
250 \&\fBSSL_CTX_use_PrivateKey_ASN1()\fR adds the private key of type \fBpk\fR
252 \&\fBSSL_CTX_use_RSAPrivateKey_ASN1()\fR adds the private key of type \s-1RSA\s0
254 \&\fBSSL_use_PrivateKey_ASN1()\fR and \fBSSL_use_RSAPrivateKey_ASN1()\fR add the private
257 \&\fBSSL_CTX_use_PrivateKey_file()\fR adds the first private key found in
258 \&\fBfile\fR to \fBctx\fR. The formatting \fBtype\fR of the private key must be specified
260 \&\fBSSL_CTX_use_RSAPrivateKey_file()\fR adds the first private \s-1RSA\s0 key found in
261 \&\fBfile\fR to \fBctx\fR. \fBSSL_use_PrivateKey_file()\fR adds the first private key found
262 in \fBfile\fR to \fBssl\fR; \fBSSL_use_RSAPrivateKey_file()\fR adds the first private
265 \&\fBSSL_CTX_check_private_key()\fR checks the consistency of a private key with
274 The internal certificate store of OpenSSL can hold several private
278 When reading certificates and private keys from file, files of type
280 one certificate or private key, consequently
300 The private keys loaded from file can be encrypted. In order to successfully
310 functions to set a new private key will replace any private key that has already
313 private key to confirm that the certificate and key match.