1 .\" $NetBSD: libcrypto.pl,v 1.3 2007/11/27 22:16:03 christos Exp $
3 .\" Automatically generated by Pod::Man 2.16 (Pod::Simple 3.05)
6 .\" ========================================================================
7 .de Sh \" Subsection heading
15 .de Sp \" Vertical space (when we can't use .PP)
19 .de Vb \" Begin verbatim text
24 .de Ve \" End verbatim text
28 .\" Set up some character translations and predefined strings. \*(-- will
29 .\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left
30 .\" double quote, and \*(R" will give a right double quote. \*(C+ will
31 .\" give a nicer C++. Capital omega is used to do unbreakable dashes and
32 .\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff,
33 .\" nothing in troff, for use with C<>.
35 .ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p'
39 . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch
40 . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch
53 .\" Escape single quotes in literal strings from groff's Unicode transform.
57 .\" If the F register is turned on, we'll generate index entries on stderr for
58 .\" titles (.TH), headers (.SH), subsections (.Sh), items (.Ip), and index
59 .\" entries marked with X<> in POD. Of course, you'll have to process the
60 .\" output yourself in some meaningful fashion.
63 . tm Index:\\$1\t\\n%\t"\\$2"
73 .\" Accent mark definitions (@(#)ms.acc 1.5 88/02/08 SMI; from UCB 4.2).
74 .\" Fear. Run. Save yourself. No user-serviceable parts.
75 . \" fudge factors for nroff and troff
84 . ds #H ((1u-(\\\\n(.fu%2u))*.13m)
90 . \" simple accents for nroff and troff
100 . ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u"
101 . ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u'
102 . ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'^\h'|\\n:u'
103 . ds , \\k:\h'-(\\n(.wu*8/10)',\h'|\\n:u'
104 . ds ~ \\k:\h'-(\\n(.wu-\*(#H-.1m)'~\h'|\\n:u'
105 . ds / \\k:\h'-(\\n(.wu*8/10-\*(#H)'\z\(sl\h'|\\n:u'
107 . \" troff and (daisy-wheel) nroff accents
108 .ds : \\k:\h'-(\\n(.wu*8/10-\*(#H+.1m+\*(#F)'\v'-\*(#V'\z.\h'.2m+\*(#F'.\h'|\\n:u'\v'\*(#V'
109 .ds 8 \h'\*(#H'\(*b\h'-\*(#H'
110 .ds o \\k:\h'-(\\n(.wu+\w'\(de'u-\*(#H)/2u'\v'-.3n'\*(#[\z\(de\v'.3n'\h'|\\n:u'\*(#]
111 .ds d- \h'\*(#H'\(pd\h'-\w'~'u'\v'-.25m'\f2\(hy\fP\v'.25m'\h'-\*(#H'
112 .ds D- D\\k:\h'-\w'D'u'\v'-.11m'\z\(hy\v'.11m'\h'|\\n:u'
113 .ds th \*(#[\v'.3m'\s+1I\s-1\v'-.3m'\h'-(\w'I'u*2/3)'\s-1o\s+1\*(#]
114 .ds Th \*(#[\s+2I\s-2\h'-\w'I'u*3/5'\v'-.3m'o\v'.3m'\*(#]
115 .ds ae a\h'-(\w'a'u*4/10)'e
116 .ds Ae A\h'-(\w'A'u*4/10)'E
117 . \" corrections for vroff
118 .if v .ds ~ \\k:\h'-(\\n(.wu*9/10-\*(#H)'\s-2\u~\d\s+2\h'|\\n:u'
119 .if v .ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'\v'-.4m'^\v'.4m'\h'|\\n:u'
120 . \" for low resolution devices (crt and lpr)
121 .if \n(.H>23 .if \n(.V>19 \
134 .\" ========================================================================
136 .IX Title "SSL_CTX_use_certificate 3"
137 .TH SSL_CTX_use_certificate 3 "2005-04-08" "1.1.0-dev" "OpenSSL"
138 .\" For nroff, turn off justification. Always turn off hyphenation; it makes
139 .\" way too many mistakes in technical documents.
143 SSL_CTX_use_certificate, SSL_CTX_use_certificate_ASN1, SSL_CTX_use_certificate_file, SSL_use_certificate, SSL_use_certificate_ASN1, SSL_use_certificate_file, SSL_CTX_use_certificate_chain_file, SSL_CTX_use_PrivateKey, SSL_CTX_use_PrivateKey_ASN1, SSL_CTX_use_PrivateKey_file, SSL_CTX_use_RSAPrivateKey, SSL_CTX_use_RSAPrivateKey_ASN1, SSL_CTX_use_RSAPrivateKey_file, SSL_use_PrivateKey_file, SSL_use_PrivateKey_ASN1, SSL_use_PrivateKey, SSL_use_RSAPrivateKey, SSL_use_RSAPrivateKey_ASN1, SSL_use_RSAPrivateKey_file, SSL_CTX_check_private_key, SSL_check_private_key \- load certificate and key data
147 .IX Header "SYNOPSIS"
149 \& #include <openssl/ssl.h>
151 \& int SSL_CTX_use_certificate(SSL_CTX *ctx, X509 *x);
152 \& int SSL_CTX_use_certificate_ASN1(SSL_CTX *ctx, int len, unsigned char *d);
153 \& int SSL_CTX_use_certificate_file(SSL_CTX *ctx, const char *file, int type);
154 \& int SSL_use_certificate(SSL *ssl, X509 *x);
155 \& int SSL_use_certificate_ASN1(SSL *ssl, unsigned char *d, int len);
156 \& int SSL_use_certificate_file(SSL *ssl, const char *file, int type);
158 \& int SSL_CTX_use_certificate_chain_file(SSL_CTX *ctx, const char *file);
160 \& int SSL_CTX_use_PrivateKey(SSL_CTX *ctx, EVP_PKEY *pkey);
161 \& int SSL_CTX_use_PrivateKey_ASN1(int pk, SSL_CTX *ctx, unsigned char *d,
163 \& int SSL_CTX_use_PrivateKey_file(SSL_CTX *ctx, const char *file, int type);
164 \& int SSL_CTX_use_RSAPrivateKey(SSL_CTX *ctx, RSA *rsa);
165 \& int SSL_CTX_use_RSAPrivateKey_ASN1(SSL_CTX *ctx, unsigned char *d, long len);
166 \& int SSL_CTX_use_RSAPrivateKey_file(SSL_CTX *ctx, const char *file, int type);
167 \& int SSL_use_PrivateKey(SSL *ssl, EVP_PKEY *pkey);
168 \& int SSL_use_PrivateKey_ASN1(int pk,SSL *ssl, unsigned char *d, long len);
169 \& int SSL_use_PrivateKey_file(SSL *ssl, const char *file, int type);
170 \& int SSL_use_RSAPrivateKey(SSL *ssl, RSA *rsa);
171 \& int SSL_use_RSAPrivateKey_ASN1(SSL *ssl, unsigned char *d, long len);
172 \& int SSL_use_RSAPrivateKey_file(SSL *ssl, const char *file, int type);
174 \& int SSL_CTX_check_private_key(const SSL_CTX *ctx);
175 \& int SSL_check_private_key(const SSL *ssl);
178 .IX Header "DESCRIPTION"
179 These functions load the certificates and private keys into the \s-1SSL_CTX\s0
180 or \s-1SSL\s0 object, respectively.
182 The SSL_CTX_* class of functions loads the certificates and keys into the
183 \&\s-1SSL_CTX\s0 object \fBctx\fR. The information is passed to \s-1SSL\s0 objects \fBssl\fR
184 created from \fBctx\fR with \fISSL_new\fR\|(3) by copying, so that
185 changes applied to \fBctx\fR do not propagate to already existing \s-1SSL\s0 objects.
187 The SSL_* class of functions only loads certificates and keys into a
188 specific \s-1SSL\s0 object. The specific information is kept, when
189 \&\fISSL_clear\fR\|(3) is called for this \s-1SSL\s0 object.
191 \&\fISSL_CTX_use_certificate()\fR loads the certificate \fBx\fR into \fBctx\fR,
192 \&\fISSL_use_certificate()\fR loads \fBx\fR into \fBssl\fR. The rest of the
193 certificates needed to form the complete certificate chain can be
195 \&\fISSL_CTX_add_extra_chain_cert\fR\|(3)
198 \&\fISSL_CTX_use_certificate_ASN1()\fR loads the \s-1ASN1\s0 encoded certificate from
199 the memory location \fBd\fR (with length \fBlen\fR) into \fBctx\fR,
200 \&\fISSL_use_certificate_ASN1()\fR loads the \s-1ASN1\s0 encoded certificate into \fBssl\fR.
202 \&\fISSL_CTX_use_certificate_file()\fR loads the first certificate stored in \fBfile\fR
203 into \fBctx\fR. The formatting \fBtype\fR of the certificate must be specified
204 from the known types \s-1SSL_FILETYPE_PEM\s0, \s-1SSL_FILETYPE_ASN1\s0.
205 \&\fISSL_use_certificate_file()\fR loads the certificate from \fBfile\fR into \fBssl\fR.
206 See the \s-1NOTES\s0 section on why \fISSL_CTX_use_certificate_chain_file()\fR
209 \&\fISSL_CTX_use_certificate_chain_file()\fR loads a certificate chain from
210 \&\fBfile\fR into \fBctx\fR. The certificates must be in \s-1PEM\s0 format and must
211 be sorted starting with the subject's certificate (actual client or server
212 certificate), followed by intermediate \s-1CA\s0 certificates if applicable, and
213 ending at the highest level (root) \s-1CA\s0.
214 There is no corresponding function working on a single \s-1SSL\s0 object.
216 \&\fISSL_CTX_use_PrivateKey()\fR adds \fBpkey\fR as private key to \fBctx\fR.
217 \&\fISSL_CTX_use_RSAPrivateKey()\fR adds the private key \fBrsa\fR of type \s-1RSA\s0
218 to \fBctx\fR. \fISSL_use_PrivateKey()\fR adds \fBpkey\fR as private key to \fBssl\fR;
219 \&\fISSL_use_RSAPrivateKey()\fR adds \fBrsa\fR as private key of type \s-1RSA\s0 to \fBssl\fR.
220 If a certificate has already been set and the private does not belong
221 to the certificate an error is returned. To change a certificate, private
222 key pair the new certificate needs to be set with \fISSL_use_certificate()\fR
223 or \fISSL_CTX_use_certificate()\fR before setting the private key with
224 \&\fISSL_CTX_use_PrivateKey()\fR or \fISSL_use_PrivateKey()\fR.
226 \&\fISSL_CTX_use_PrivateKey_ASN1()\fR adds the private key of type \fBpk\fR
227 stored at memory location \fBd\fR (length \fBlen\fR) to \fBctx\fR.
228 \&\fISSL_CTX_use_RSAPrivateKey_ASN1()\fR adds the private key of type \s-1RSA\s0
229 stored at memory location \fBd\fR (length \fBlen\fR) to \fBctx\fR.
230 \&\fISSL_use_PrivateKey_ASN1()\fR and \fISSL_use_RSAPrivateKey_ASN1()\fR add the private
233 \&\fISSL_CTX_use_PrivateKey_file()\fR adds the first private key found in
234 \&\fBfile\fR to \fBctx\fR. The formatting \fBtype\fR of the certificate must be specified
235 from the known types \s-1SSL_FILETYPE_PEM\s0, \s-1SSL_FILETYPE_ASN1\s0.
236 \&\fISSL_CTX_use_RSAPrivateKey_file()\fR adds the first private \s-1RSA\s0 key found in
237 \&\fBfile\fR to \fBctx\fR. \fISSL_use_PrivateKey_file()\fR adds the first private key found
238 in \fBfile\fR to \fBssl\fR; \fISSL_use_RSAPrivateKey_file()\fR adds the first private
239 \&\s-1RSA\s0 key found to \fBssl\fR.
241 \&\fISSL_CTX_check_private_key()\fR checks the consistency of a private key with
242 the corresponding certificate loaded into \fBctx\fR. If more than one
243 key/certificate pair (\s-1RSA/DSA\s0) is installed, the last item installed will
244 be checked. If e.g. the last item was a \s-1RSA\s0 certificate or key, the \s-1RSA\s0
245 key/certificate pair will be checked. \fISSL_check_private_key()\fR performs
246 the same check for \fBssl\fR. If no key/certificate was explicitly added for
247 this \fBssl\fR, the last item added into \fBctx\fR will be checked.
250 The internal certificate store of OpenSSL can hold two private key/certificate
251 pairs at a time: one key/certificate of type \s-1RSA\s0 and one key/certificate
252 of type \s-1DSA\s0. The certificate used depends on the cipher select, see
253 also \fISSL_CTX_set_cipher_list\fR\|(3).
255 When reading certificates and private keys from file, files of type
256 \&\s-1SSL_FILETYPE_ASN1\s0 (also known as \fB\s-1DER\s0\fR, binary encoding) can only contain
257 one certificate or private key, consequently
258 \&\fISSL_CTX_use_certificate_chain_file()\fR is only applicable to \s-1PEM\s0 formatting.
259 Files of type \s-1SSL_FILETYPE_PEM\s0 can contain more than one item.
261 \&\fISSL_CTX_use_certificate_chain_file()\fR adds the first certificate found
262 in the file to the certificate store. The other certificates are added
263 to the store of chain certificates using
264 \&\fISSL_CTX_add_extra_chain_cert\fR\|(3).
265 There exists only one extra chain store, so that the same chain is appended
266 to both types of certificates, \s-1RSA\s0 and \s-1DSA\s0! If it is not intended to use
267 both type of certificate at the same time, it is recommended to use the
268 \&\fISSL_CTX_use_certificate_chain_file()\fR instead of the
269 \&\fISSL_CTX_use_certificate_file()\fR function in order to allow the use of
270 complete certificate chains even when no trusted \s-1CA\s0 storage is used or
271 when the \s-1CA\s0 issuing the certificate shall not be added to the trusted
274 If additional certificates are needed to complete the chain during the
275 \&\s-1TLS\s0 negotiation, \s-1CA\s0 certificates are additionally looked up in the
276 locations of trusted \s-1CA\s0 certificates, see
277 \&\fISSL_CTX_load_verify_locations\fR\|(3).
279 The private keys loaded from file can be encrypted. In order to successfully
280 load encrypted keys, a function returning the passphrase must have been
282 \&\fISSL_CTX_set_default_passwd_cb\fR\|(3).
283 (Certificate files might be encrypted as well from the technical point
284 of view, it however does not make sense as the data in the certificate
285 is considered public anyway.)
287 .IX Header "RETURN VALUES"
288 On success, the functions return 1.
289 Otherwise check out the error stack to find out the reason.
291 .IX Header "SEE ALSO"
292 \&\fIssl\fR\|(3), \fISSL_new\fR\|(3), \fISSL_clear\fR\|(3),
293 \&\fISSL_CTX_load_verify_locations\fR\|(3),
294 \&\fISSL_CTX_set_default_passwd_cb\fR\|(3),
295 \&\fISSL_CTX_set_cipher_list\fR\|(3),
296 \&\fISSL_CTX_set_client_cert_cb\fR\|(3),
297 \&\fISSL_CTX_add_extra_chain_cert\fR\|(3)
300 Support for \s-1DER\s0 encoded private keys (\s-1SSL_FILETYPE_ASN1\s0) in
301 \&\fISSL_CTX_use_PrivateKey_file()\fR and \fISSL_use_PrivateKey_file()\fR was added