Add lh_new() inlining
[openssl.git] / include / openssl / pem.h
1 /* crypto/pem/pem.h */
2 /* Copyright (C) 1995-1997 Eric Young (eay@cryptsoft.com)
3  * All rights reserved.
4  *
5  * This package is an SSL implementation written
6  * by Eric Young (eay@cryptsoft.com).
7  * The implementation was written so as to conform with Netscapes SSL.
8  *
9  * This library is free for commercial and non-commercial use as long as
10  * the following conditions are aheared to.  The following conditions
11  * apply to all code found in this distribution, be it the RC4, RSA,
12  * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
13  * included with this distribution is covered by the same copyright terms
14  * except that the holder is Tim Hudson (tjh@cryptsoft.com).
15  *
16  * Copyright remains Eric Young's, and as such any Copyright notices in
17  * the code are not to be removed.
18  * If this package is used in a product, Eric Young should be given attribution
19  * as the author of the parts of the library used.
20  * This can be in the form of a textual message at program startup or
21  * in documentation (online or textual) provided with the package.
22  *
23  * Redistribution and use in source and binary forms, with or without
24  * modification, are permitted provided that the following conditions
25  * are met:
26  * 1. Redistributions of source code must retain the copyright
27  *    notice, this list of conditions and the following disclaimer.
28  * 2. Redistributions in binary form must reproduce the above copyright
29  *    notice, this list of conditions and the following disclaimer in the
30  *    documentation and/or other materials provided with the distribution.
31  * 3. All advertising materials mentioning features or use of this software
32  *    must display the following acknowledgement:
33  *    "This product includes cryptographic software written by
34  *     Eric Young (eay@cryptsoft.com)"
35  *    The word 'cryptographic' can be left out if the rouines from the library
36  *    being used are not cryptographic related :-).
37  * 4. If you include any Windows specific code (or a derivative thereof) from
38  *    the apps directory (application code) you must include an acknowledgement:
39  *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
40  *
41  * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
42  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
43  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
44  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
45  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
46  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
47  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
49  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
50  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
51  * SUCH DAMAGE.
52  *
53  * The licence and distribution terms for any publically available version or
54  * derivative of this code cannot be changed.  i.e. this code cannot simply be
55  * copied and put under another distribution licence
56  * [including the GNU Public Licence.]
57  */
58
59 #ifndef HEADER_PEM_H
60 # define HEADER_PEM_H
61
62 # include <openssl/e_os2.h>
63 # include <openssl/bio.h>
64 # include <openssl/stack.h>
65 # include <openssl/evp.h>
66 # include <openssl/x509.h>
67 # include <openssl/pem2.h>
68
69 #ifdef  __cplusplus
70 extern "C" {
71 #endif
72
73 # define PEM_BUFSIZE             1024
74
75 # define PEM_STRING_X509_OLD     "X509 CERTIFICATE"
76 # define PEM_STRING_X509         "CERTIFICATE"
77 # define PEM_STRING_X509_TRUSTED "TRUSTED CERTIFICATE"
78 # define PEM_STRING_X509_REQ_OLD "NEW CERTIFICATE REQUEST"
79 # define PEM_STRING_X509_REQ     "CERTIFICATE REQUEST"
80 # define PEM_STRING_X509_CRL     "X509 CRL"
81 # define PEM_STRING_EVP_PKEY     "ANY PRIVATE KEY"
82 # define PEM_STRING_PUBLIC       "PUBLIC KEY"
83 # define PEM_STRING_RSA          "RSA PRIVATE KEY"
84 # define PEM_STRING_RSA_PUBLIC   "RSA PUBLIC KEY"
85 # define PEM_STRING_DSA          "DSA PRIVATE KEY"
86 # define PEM_STRING_DSA_PUBLIC   "DSA PUBLIC KEY"
87 # define PEM_STRING_PKCS7        "PKCS7"
88 # define PEM_STRING_PKCS7_SIGNED "PKCS #7 SIGNED DATA"
89 # define PEM_STRING_PKCS8        "ENCRYPTED PRIVATE KEY"
90 # define PEM_STRING_PKCS8INF     "PRIVATE KEY"
91 # define PEM_STRING_DHPARAMS     "DH PARAMETERS"
92 # define PEM_STRING_DHXPARAMS    "X9.42 DH PARAMETERS"
93 # define PEM_STRING_SSL_SESSION  "SSL SESSION PARAMETERS"
94 # define PEM_STRING_DSAPARAMS    "DSA PARAMETERS"
95 # define PEM_STRING_ECDSA_PUBLIC "ECDSA PUBLIC KEY"
96 # define PEM_STRING_ECPARAMETERS "EC PARAMETERS"
97 # define PEM_STRING_ECPRIVATEKEY "EC PRIVATE KEY"
98 # define PEM_STRING_PARAMETERS   "PARAMETERS"
99 # define PEM_STRING_CMS          "CMS"
100
101 # define PEM_TYPE_ENCRYPTED      10
102 # define PEM_TYPE_MIC_ONLY       20
103 # define PEM_TYPE_MIC_CLEAR      30
104 # define PEM_TYPE_CLEAR          40
105
106 typedef struct pem_recip_st {
107     char *name;
108     X509_NAME *dn;
109     int cipher;
110     int key_enc;
111     /*      char iv[8]; unused and wrong size */
112 } PEM_USER;
113
114 typedef struct pem_ctx_st {
115     int type;                   /* what type of object */
116     struct {
117         int version;
118         int mode;
119     } proc_type;
120
121     char *domain;
122
123     struct {
124         int cipher;
125         /*-
126         unused, and wrong size
127         unsigned char iv[8]; */
128     } DEK_info;
129
130     PEM_USER *originator;
131
132     int num_recipient;
133     PEM_USER **recipient;
134
135 /*-
136     XXX(ben): don#t think this is used!
137         STACK *x509_chain;      / * certificate chain */
138     EVP_MD *md;                 /* signature type */
139
140     int md_enc;                 /* is the md encrypted or not? */
141     int md_len;                 /* length of md_data */
142     char *md_data;              /* message digest, could be pkey encrypted */
143
144     EVP_CIPHER *dec;            /* date encryption cipher */
145     int key_len;                /* key length */
146     unsigned char *key;         /* key */
147   /*-
148     unused, and wrong size
149     unsigned char iv[8]; */
150
151     int data_enc;               /* is the data encrypted */
152     int data_len;
153     unsigned char *data;
154 } PEM_CTX;
155
156 /*
157  * These macros make the PEM_read/PEM_write functions easier to maintain and
158  * write. Now they are all implemented with either: IMPLEMENT_PEM_rw(...) or
159  * IMPLEMENT_PEM_rw_cb(...)
160  */
161
162 # ifdef OPENSSL_NO_STDIO
163
164 #  define IMPLEMENT_PEM_read_fp(name, type, str, asn1) /**/
165 #  define IMPLEMENT_PEM_write_fp(name, type, str, asn1) /**/
166 #  define IMPLEMENT_PEM_write_fp_const(name, type, str, asn1) /**/
167 #  define IMPLEMENT_PEM_write_cb_fp(name, type, str, asn1) /**/
168 #  define IMPLEMENT_PEM_write_cb_fp_const(name, type, str, asn1) /**/
169 # else
170
171 #  define IMPLEMENT_PEM_read_fp(name, type, str, asn1) \
172 type *PEM_read_##name(FILE *fp, type **x, pem_password_cb *cb, void *u)\
173 { \
174 return PEM_ASN1_read((d2i_of_void *)d2i_##asn1, str,fp,(void **)x,cb,u); \
175 }
176
177 #  define IMPLEMENT_PEM_write_fp(name, type, str, asn1) \
178 int PEM_write_##name(FILE *fp, type *x) \
179 { \
180 return PEM_ASN1_write((i2d_of_void *)i2d_##asn1,str,fp,x,NULL,NULL,0,NULL,NULL); \
181 }
182
183 #  define IMPLEMENT_PEM_write_fp_const(name, type, str, asn1) \
184 int PEM_write_##name(FILE *fp, const type *x) \
185 { \
186 return PEM_ASN1_write((i2d_of_void *)i2d_##asn1,str,fp,(void *)x,NULL,NULL,0,NULL,NULL); \
187 }
188
189 #  define IMPLEMENT_PEM_write_cb_fp(name, type, str, asn1) \
190 int PEM_write_##name(FILE *fp, type *x, const EVP_CIPHER *enc, \
191              unsigned char *kstr, int klen, pem_password_cb *cb, \
192                   void *u) \
193         { \
194         return PEM_ASN1_write((i2d_of_void *)i2d_##asn1,str,fp,x,enc,kstr,klen,cb,u); \
195         }
196
197 #  define IMPLEMENT_PEM_write_cb_fp_const(name, type, str, asn1) \
198 int PEM_write_##name(FILE *fp, type *x, const EVP_CIPHER *enc, \
199              unsigned char *kstr, int klen, pem_password_cb *cb, \
200                   void *u) \
201         { \
202         return PEM_ASN1_write((i2d_of_void *)i2d_##asn1,str,fp,x,enc,kstr,klen,cb,u); \
203         }
204
205 # endif
206
207 # define IMPLEMENT_PEM_read_bio(name, type, str, asn1) \
208 type *PEM_read_bio_##name(BIO *bp, type **x, pem_password_cb *cb, void *u)\
209 { \
210 return PEM_ASN1_read_bio((d2i_of_void *)d2i_##asn1, str,bp,(void **)x,cb,u); \
211 }
212
213 # define IMPLEMENT_PEM_write_bio(name, type, str, asn1) \
214 int PEM_write_bio_##name(BIO *bp, type *x) \
215 { \
216 return PEM_ASN1_write_bio((i2d_of_void *)i2d_##asn1,str,bp,x,NULL,NULL,0,NULL,NULL); \
217 }
218
219 # define IMPLEMENT_PEM_write_bio_const(name, type, str, asn1) \
220 int PEM_write_bio_##name(BIO *bp, const type *x) \
221 { \
222 return PEM_ASN1_write_bio((i2d_of_void *)i2d_##asn1,str,bp,(void *)x,NULL,NULL,0,NULL,NULL); \
223 }
224
225 # define IMPLEMENT_PEM_write_cb_bio(name, type, str, asn1) \
226 int PEM_write_bio_##name(BIO *bp, type *x, const EVP_CIPHER *enc, \
227              unsigned char *kstr, int klen, pem_password_cb *cb, void *u) \
228         { \
229         return PEM_ASN1_write_bio((i2d_of_void *)i2d_##asn1,str,bp,x,enc,kstr,klen,cb,u); \
230         }
231
232 # define IMPLEMENT_PEM_write_cb_bio_const(name, type, str, asn1) \
233 int PEM_write_bio_##name(BIO *bp, type *x, const EVP_CIPHER *enc, \
234              unsigned char *kstr, int klen, pem_password_cb *cb, void *u) \
235         { \
236         return PEM_ASN1_write_bio((i2d_of_void *)i2d_##asn1,str,bp,(void *)x,enc,kstr,klen,cb,u); \
237         }
238
239 # define IMPLEMENT_PEM_write(name, type, str, asn1) \
240         IMPLEMENT_PEM_write_bio(name, type, str, asn1) \
241         IMPLEMENT_PEM_write_fp(name, type, str, asn1)
242
243 # define IMPLEMENT_PEM_write_const(name, type, str, asn1) \
244         IMPLEMENT_PEM_write_bio_const(name, type, str, asn1) \
245         IMPLEMENT_PEM_write_fp_const(name, type, str, asn1)
246
247 # define IMPLEMENT_PEM_write_cb(name, type, str, asn1) \
248         IMPLEMENT_PEM_write_cb_bio(name, type, str, asn1) \
249         IMPLEMENT_PEM_write_cb_fp(name, type, str, asn1)
250
251 # define IMPLEMENT_PEM_write_cb_const(name, type, str, asn1) \
252         IMPLEMENT_PEM_write_cb_bio_const(name, type, str, asn1) \
253         IMPLEMENT_PEM_write_cb_fp_const(name, type, str, asn1)
254
255 # define IMPLEMENT_PEM_read(name, type, str, asn1) \
256         IMPLEMENT_PEM_read_bio(name, type, str, asn1) \
257         IMPLEMENT_PEM_read_fp(name, type, str, asn1)
258
259 # define IMPLEMENT_PEM_rw(name, type, str, asn1) \
260         IMPLEMENT_PEM_read(name, type, str, asn1) \
261         IMPLEMENT_PEM_write(name, type, str, asn1)
262
263 # define IMPLEMENT_PEM_rw_const(name, type, str, asn1) \
264         IMPLEMENT_PEM_read(name, type, str, asn1) \
265         IMPLEMENT_PEM_write_const(name, type, str, asn1)
266
267 # define IMPLEMENT_PEM_rw_cb(name, type, str, asn1) \
268         IMPLEMENT_PEM_read(name, type, str, asn1) \
269         IMPLEMENT_PEM_write_cb(name, type, str, asn1)
270
271 /* These are the same except they are for the declarations */
272
273 # if defined(OPENSSL_NO_STDIO)
274
275 #  define DECLARE_PEM_read_fp(name, type) /**/
276 #  define DECLARE_PEM_write_fp(name, type) /**/
277 #  define DECLARE_PEM_write_fp_const(name, type) /**/
278 #  define DECLARE_PEM_write_cb_fp(name, type) /**/
279 # else
280
281 #  define DECLARE_PEM_read_fp(name, type) \
282         type *PEM_read_##name(FILE *fp, type **x, pem_password_cb *cb, void *u);
283
284 #  define DECLARE_PEM_write_fp(name, type) \
285         int PEM_write_##name(FILE *fp, type *x);
286
287 #  define DECLARE_PEM_write_fp_const(name, type) \
288         int PEM_write_##name(FILE *fp, const type *x);
289
290 #  define DECLARE_PEM_write_cb_fp(name, type) \
291         int PEM_write_##name(FILE *fp, type *x, const EVP_CIPHER *enc, \
292              unsigned char *kstr, int klen, pem_password_cb *cb, void *u);
293
294 # endif
295
296 #  define DECLARE_PEM_read_bio(name, type) \
297         type *PEM_read_bio_##name(BIO *bp, type **x, pem_password_cb *cb, void *u);
298
299 #  define DECLARE_PEM_write_bio(name, type) \
300         int PEM_write_bio_##name(BIO *bp, type *x);
301
302 #  define DECLARE_PEM_write_bio_const(name, type) \
303         int PEM_write_bio_##name(BIO *bp, const type *x);
304
305 #  define DECLARE_PEM_write_cb_bio(name, type) \
306         int PEM_write_bio_##name(BIO *bp, type *x, const EVP_CIPHER *enc, \
307              unsigned char *kstr, int klen, pem_password_cb *cb, void *u);
308
309 # define DECLARE_PEM_write(name, type) \
310         DECLARE_PEM_write_bio(name, type) \
311         DECLARE_PEM_write_fp(name, type)
312 # define DECLARE_PEM_write_const(name, type) \
313         DECLARE_PEM_write_bio_const(name, type) \
314         DECLARE_PEM_write_fp_const(name, type)
315 # define DECLARE_PEM_write_cb(name, type) \
316         DECLARE_PEM_write_cb_bio(name, type) \
317         DECLARE_PEM_write_cb_fp(name, type)
318 # define DECLARE_PEM_read(name, type) \
319         DECLARE_PEM_read_bio(name, type) \
320         DECLARE_PEM_read_fp(name, type)
321 # define DECLARE_PEM_rw(name, type) \
322         DECLARE_PEM_read(name, type) \
323         DECLARE_PEM_write(name, type)
324 # define DECLARE_PEM_rw_const(name, type) \
325         DECLARE_PEM_read(name, type) \
326         DECLARE_PEM_write_const(name, type)
327 # define DECLARE_PEM_rw_cb(name, type) \
328         DECLARE_PEM_read(name, type) \
329         DECLARE_PEM_write_cb(name, type)
330 typedef int pem_password_cb (char *buf, int size, int rwflag, void *userdata);
331
332 int PEM_get_EVP_CIPHER_INFO(char *header, EVP_CIPHER_INFO *cipher);
333 int PEM_do_header(EVP_CIPHER_INFO *cipher, unsigned char *data, long *len,
334                   pem_password_cb *callback, void *u);
335
336 int PEM_read_bio(BIO *bp, char **name, char **header,
337                  unsigned char **data, long *len);
338 int PEM_write_bio(BIO *bp, const char *name, const char *hdr,
339                   const unsigned char *data, long len);
340 int PEM_bytes_read_bio(unsigned char **pdata, long *plen, char **pnm,
341                        const char *name, BIO *bp, pem_password_cb *cb,
342                        void *u);
343 void *PEM_ASN1_read_bio(d2i_of_void *d2i, const char *name, BIO *bp, void **x,
344                         pem_password_cb *cb, void *u);
345 int PEM_ASN1_write_bio(i2d_of_void *i2d, const char *name, BIO *bp, void *x,
346                        const EVP_CIPHER *enc, unsigned char *kstr, int klen,
347                        pem_password_cb *cb, void *u);
348
349 STACK_OF(X509_INFO) *PEM_X509_INFO_read_bio(BIO *bp, STACK_OF(X509_INFO) *sk,
350                                             pem_password_cb *cb, void *u);
351 int PEM_X509_INFO_write_bio(BIO *bp, X509_INFO *xi, EVP_CIPHER *enc,
352                             unsigned char *kstr, int klen,
353                             pem_password_cb *cd, void *u);
354
355 #ifndef OPENSSL_NO_STDIO
356 int PEM_read(FILE *fp, char **name, char **header,
357              unsigned char **data, long *len);
358 int PEM_write(FILE *fp, const char *name, const char *hdr,
359               const unsigned char *data, long len);
360 void *PEM_ASN1_read(d2i_of_void *d2i, const char *name, FILE *fp, void **x,
361                     pem_password_cb *cb, void *u);
362 int PEM_ASN1_write(i2d_of_void *i2d, const char *name, FILE *fp,
363                    void *x, const EVP_CIPHER *enc, unsigned char *kstr,
364                    int klen, pem_password_cb *callback, void *u);
365 STACK_OF(X509_INFO) *PEM_X509_INFO_read(FILE *fp, STACK_OF(X509_INFO) *sk,
366                                         pem_password_cb *cb, void *u);
367 #endif
368
369 int PEM_SignInit(EVP_MD_CTX *ctx, EVP_MD *type);
370 int PEM_SignUpdate(EVP_MD_CTX *ctx, unsigned char *d, unsigned int cnt);
371 int PEM_SignFinal(EVP_MD_CTX *ctx, unsigned char *sigret,
372                   unsigned int *siglen, EVP_PKEY *pkey);
373
374 int PEM_def_callback(char *buf, int num, int w, void *key);
375 void PEM_proc_type(char *buf, int type);
376 void PEM_dek_info(char *buf, const char *type, int len, char *str);
377
378 # include <openssl/symhacks.h>
379
380 DECLARE_PEM_rw(X509, X509)
381 DECLARE_PEM_rw(X509_AUX, X509)
382 DECLARE_PEM_rw(X509_REQ, X509_REQ)
383 DECLARE_PEM_write(X509_REQ_NEW, X509_REQ)
384 DECLARE_PEM_rw(X509_CRL, X509_CRL)
385 DECLARE_PEM_rw(PKCS7, PKCS7)
386 DECLARE_PEM_rw(NETSCAPE_CERT_SEQUENCE, NETSCAPE_CERT_SEQUENCE)
387 DECLARE_PEM_rw(PKCS8, X509_SIG)
388 DECLARE_PEM_rw(PKCS8_PRIV_KEY_INFO, PKCS8_PRIV_KEY_INFO)
389 # ifndef OPENSSL_NO_RSA
390 DECLARE_PEM_rw_cb(RSAPrivateKey, RSA)
391 DECLARE_PEM_rw_const(RSAPublicKey, RSA)
392 DECLARE_PEM_rw(RSA_PUBKEY, RSA)
393 # endif
394 # ifndef OPENSSL_NO_DSA
395 DECLARE_PEM_rw_cb(DSAPrivateKey, DSA)
396 DECLARE_PEM_rw(DSA_PUBKEY, DSA)
397 DECLARE_PEM_rw_const(DSAparams, DSA)
398 # endif
399 # ifndef OPENSSL_NO_EC
400 DECLARE_PEM_rw_const(ECPKParameters, EC_GROUP)
401 DECLARE_PEM_rw_cb(ECPrivateKey, EC_KEY)
402 DECLARE_PEM_rw(EC_PUBKEY, EC_KEY)
403 # endif
404 # ifndef OPENSSL_NO_DH
405 DECLARE_PEM_rw_const(DHparams, DH)
406 DECLARE_PEM_write_const(DHxparams, DH)
407 # endif
408 DECLARE_PEM_rw_cb(PrivateKey, EVP_PKEY)
409 DECLARE_PEM_rw(PUBKEY, EVP_PKEY)
410
411 int PEM_write_bio_PKCS8PrivateKey_nid(BIO *bp, EVP_PKEY *x, int nid,
412                                       char *kstr, int klen,
413                                       pem_password_cb *cb, void *u);
414 int PEM_write_bio_PKCS8PrivateKey(BIO *, EVP_PKEY *, const EVP_CIPHER *,
415                                   char *, int, pem_password_cb *, void *);
416 int i2d_PKCS8PrivateKey_bio(BIO *bp, EVP_PKEY *x, const EVP_CIPHER *enc,
417                             char *kstr, int klen,
418                             pem_password_cb *cb, void *u);
419 int i2d_PKCS8PrivateKey_nid_bio(BIO *bp, EVP_PKEY *x, int nid,
420                                 char *kstr, int klen,
421                                 pem_password_cb *cb, void *u);
422 EVP_PKEY *d2i_PKCS8PrivateKey_bio(BIO *bp, EVP_PKEY **x, pem_password_cb *cb,
423                                   void *u);
424
425 #ifndef OPENSSL_NO_STDIO
426 int i2d_PKCS8PrivateKey_fp(FILE *fp, EVP_PKEY *x, const EVP_CIPHER *enc,
427                            char *kstr, int klen,
428                            pem_password_cb *cb, void *u);
429 int i2d_PKCS8PrivateKey_nid_fp(FILE *fp, EVP_PKEY *x, int nid,
430                                char *kstr, int klen,
431                                pem_password_cb *cb, void *u);
432 int PEM_write_PKCS8PrivateKey_nid(FILE *fp, EVP_PKEY *x, int nid,
433                                   char *kstr, int klen,
434                                   pem_password_cb *cb, void *u);
435
436 EVP_PKEY *d2i_PKCS8PrivateKey_fp(FILE *fp, EVP_PKEY **x, pem_password_cb *cb,
437                                  void *u);
438
439 int PEM_write_PKCS8PrivateKey(FILE *fp, EVP_PKEY *x, const EVP_CIPHER *enc,
440                               char *kstr, int klen, pem_password_cb *cd,
441                               void *u);
442 #endif
443 EVP_PKEY *PEM_read_bio_Parameters(BIO *bp, EVP_PKEY **x);
444 int PEM_write_bio_Parameters(BIO *bp, EVP_PKEY *x);
445
446 EVP_PKEY *b2i_PrivateKey(const unsigned char **in, long length);
447 EVP_PKEY *b2i_PublicKey(const unsigned char **in, long length);
448 EVP_PKEY *b2i_PrivateKey_bio(BIO *in);
449 EVP_PKEY *b2i_PublicKey_bio(BIO *in);
450 int i2b_PrivateKey_bio(BIO *out, EVP_PKEY *pk);
451 int i2b_PublicKey_bio(BIO *out, EVP_PKEY *pk);
452 # ifndef OPENSSL_NO_RC4
453 EVP_PKEY *b2i_PVK_bio(BIO *in, pem_password_cb *cb, void *u);
454 int i2b_PVK_bio(BIO *out, EVP_PKEY *pk, int enclevel,
455                 pem_password_cb *cb, void *u);
456 # endif
457
458 /* BEGIN ERROR CODES */
459 /*
460  * The following lines are auto generated by the script mkerr.pl. Any changes
461  * made after this point may be overwritten when the script is next run.
462  */
463 void ERR_load_PEM_strings(void);
464
465 /* Error codes for the PEM functions. */
466
467 /* Function codes. */
468 # define PEM_F_B2I_DSS                                    127
469 # define PEM_F_B2I_PVK_BIO                                128
470 # define PEM_F_B2I_RSA                                    129
471 # define PEM_F_CHECK_BITLEN_DSA                           130
472 # define PEM_F_CHECK_BITLEN_RSA                           131
473 # define PEM_F_D2I_PKCS8PRIVATEKEY_BIO                    120
474 # define PEM_F_D2I_PKCS8PRIVATEKEY_FP                     121
475 # define PEM_F_DO_B2I                                     132
476 # define PEM_F_DO_B2I_BIO                                 133
477 # define PEM_F_DO_BLOB_HEADER                             134
478 # define PEM_F_DO_PK8PKEY                                 126
479 # define PEM_F_DO_PK8PKEY_FP                              125
480 # define PEM_F_DO_PVK_BODY                                135
481 # define PEM_F_DO_PVK_HEADER                              136
482 # define PEM_F_I2B_PVK                                    137
483 # define PEM_F_I2B_PVK_BIO                                138
484 # define PEM_F_LOAD_IV                                    101
485 # define PEM_F_PEM_ASN1_READ                              102
486 # define PEM_F_PEM_ASN1_READ_BIO                          103
487 # define PEM_F_PEM_ASN1_WRITE                             104
488 # define PEM_F_PEM_ASN1_WRITE_BIO                         105
489 # define PEM_F_PEM_DEF_CALLBACK                           100
490 # define PEM_F_PEM_DO_HEADER                              106
491 # define PEM_F_PEM_F_PEM_WRITE_PKCS8PRIVATEKEY            118
492 # define PEM_F_PEM_GET_EVP_CIPHER_INFO                    107
493 # define PEM_F_PEM_PK8PKEY                                119
494 # define PEM_F_PEM_READ                                   108
495 # define PEM_F_PEM_READ_BIO                               109
496 # define PEM_F_PEM_READ_BIO_DHPARAMS                      141
497 # define PEM_F_PEM_READ_BIO_PARAMETERS                    140
498 # define PEM_F_PEM_READ_BIO_PRIVATEKEY                    123
499 # define PEM_F_PEM_READ_DHPARAMS                          142
500 # define PEM_F_PEM_READ_PRIVATEKEY                        124
501 # define PEM_F_PEM_SIGNFINAL                              112
502 # define PEM_F_PEM_WRITE                                  113
503 # define PEM_F_PEM_WRITE_BIO                              114
504 # define PEM_F_PEM_WRITE_PRIVATEKEY                       139
505 # define PEM_F_PEM_X509_INFO_READ                         115
506 # define PEM_F_PEM_X509_INFO_READ_BIO                     116
507 # define PEM_F_PEM_X509_INFO_WRITE_BIO                    117
508
509 /* Reason codes. */
510 # define PEM_R_BAD_BASE64_DECODE                          100
511 # define PEM_R_BAD_DECRYPT                                101
512 # define PEM_R_BAD_END_LINE                               102
513 # define PEM_R_BAD_IV_CHARS                               103
514 # define PEM_R_BAD_MAGIC_NUMBER                           116
515 # define PEM_R_BAD_PASSWORD_READ                          104
516 # define PEM_R_BAD_VERSION_NUMBER                         117
517 # define PEM_R_BIO_WRITE_FAILURE                          118
518 # define PEM_R_CIPHER_IS_NULL                             127
519 # define PEM_R_ERROR_CONVERTING_PRIVATE_KEY               115
520 # define PEM_R_EXPECTING_PRIVATE_KEY_BLOB                 119
521 # define PEM_R_EXPECTING_PUBLIC_KEY_BLOB                  120
522 # define PEM_R_INCONSISTENT_HEADER                        121
523 # define PEM_R_KEYBLOB_HEADER_PARSE_ERROR                 122
524 # define PEM_R_KEYBLOB_TOO_SHORT                          123
525 # define PEM_R_NOT_DEK_INFO                               105
526 # define PEM_R_NOT_ENCRYPTED                              106
527 # define PEM_R_NOT_PROC_TYPE                              107
528 # define PEM_R_NO_START_LINE                              108
529 # define PEM_R_PROBLEMS_GETTING_PASSWORD                  109
530 # define PEM_R_PUBLIC_KEY_NO_RSA                          110
531 # define PEM_R_PVK_DATA_TOO_SHORT                         124
532 # define PEM_R_PVK_TOO_SHORT                              125
533 # define PEM_R_READ_KEY                                   111
534 # define PEM_R_SHORT_HEADER                               112
535 # define PEM_R_UNSUPPORTED_CIPHER                         113
536 # define PEM_R_UNSUPPORTED_ENCRYPTION                     114
537 # define PEM_R_UNSUPPORTED_KEY_COMPONENTS                 126
538
539 #ifdef  __cplusplus
540 }
541 #endif
542 #endif