Allow additional information to be attached to a
[openssl.git] / crypto / pem / 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 #ifdef  __cplusplus
63 extern "C" {
64 #endif
65
66 #include <openssl/evp.h>
67 #include <openssl/x509.h>
68 #include <openssl/pem2.h>
69
70 #define PEM_BUFSIZE             1024
71
72 #define PEM_OBJ_UNDEF           0
73 #define PEM_OBJ_X509            1
74 #define PEM_OBJ_X509_REQ        2
75 #define PEM_OBJ_CRL             3
76 #define PEM_OBJ_SSL_SESSION     4
77 #define PEM_OBJ_PRIV_KEY        10
78 #define PEM_OBJ_PRIV_RSA        11
79 #define PEM_OBJ_PRIV_DSA        12
80 #define PEM_OBJ_PRIV_DH         13
81 #define PEM_OBJ_PUB_RSA         14
82 #define PEM_OBJ_PUB_DSA         15
83 #define PEM_OBJ_PUB_DH          16
84 #define PEM_OBJ_DHPARAMS        17
85 #define PEM_OBJ_DSAPARAMS       18
86 #define PEM_OBJ_PRIV_RSA_PUBLIC 19
87
88 #define PEM_ERROR               30
89 #define PEM_DEK_DES_CBC         40
90 #define PEM_DEK_IDEA_CBC        45
91 #define PEM_DEK_DES_EDE         50
92 #define PEM_DEK_DES_ECB         60
93 #define PEM_DEK_RSA             70
94 #define PEM_DEK_RSA_MD2         80
95 #define PEM_DEK_RSA_MD5         90
96
97 #define PEM_MD_MD2              NID_md2
98 #define PEM_MD_MD5              NID_md5
99 #define PEM_MD_SHA              NID_sha
100 #define PEM_MD_MD2_RSA          NID_md2WithRSAEncryption
101 #define PEM_MD_MD5_RSA          NID_md5WithRSAEncryption
102 #define PEM_MD_SHA_RSA          NID_sha1WithRSAEncryption
103
104 #define PEM_STRING_X509_OLD     "X509 CERTIFICATE"
105 #define PEM_STRING_X509         "CERTIFICATE"
106 #define PEM_STRING_X509_TRUSTED "TRUSTED CERTIFICATE"
107 #define PEM_STRING_X509_REQ_OLD "NEW CERTIFICATE REQUEST"
108 #define PEM_STRING_X509_REQ     "CERTIFICATE REQUEST"
109 #define PEM_STRING_X509_CRL     "X509 CRL"
110 #define PEM_STRING_EVP_PKEY     "ANY PRIVATE KEY"
111 #define PEM_STRING_RSA          "RSA PRIVATE KEY"
112 #define PEM_STRING_RSA_PUBLIC   "RSA PUBLIC KEY"
113 #define PEM_STRING_DSA          "DSA PRIVATE KEY"
114 #define PEM_STRING_DSA_PUBLIC   "DSA PUBLIC KEY"
115 #define PEM_STRING_PKCS7        "PKCS7"
116 #define PEM_STRING_PKCS8        "ENCRYPTED PRIVATE KEY"
117 #define PEM_STRING_PKCS8INF     "PRIVATE KEY"
118 #define PEM_STRING_DHPARAMS     "DH PARAMETERS"
119 #define PEM_STRING_SSL_SESSION  "SSL SESSION PARAMETERS"
120 #define PEM_STRING_DSAPARAMS    "DSA PARAMETERS"
121
122
123 typedef struct PEM_Encode_Seal_st
124         {
125         EVP_ENCODE_CTX encode;
126         EVP_MD_CTX md;
127         EVP_CIPHER_CTX cipher;
128         } PEM_ENCODE_SEAL_CTX;
129
130 /* enc_type is one off */
131 #define PEM_TYPE_ENCRYPTED      10
132 #define PEM_TYPE_MIC_ONLY       20
133 #define PEM_TYPE_MIC_CLEAR      30
134 #define PEM_TYPE_CLEAR          40
135
136 typedef struct pem_recip_st
137         {
138         char *name;
139         X509_NAME *dn;
140
141         int cipher;
142         int key_enc;
143         char iv[8];
144         } PEM_USER;
145
146 typedef struct pem_ctx_st
147         {
148         int type;               /* what type of object */
149
150         struct  {
151                 int version;    
152                 int mode;               
153                 } proc_type;
154
155         char *domain;
156
157         struct  {
158                 int cipher;
159                 unsigned char iv[8];
160                 } DEK_info;
161                 
162         PEM_USER *originator;
163
164         int num_recipient;
165         PEM_USER **recipient;
166
167 #ifdef HEADER_STACK_H
168         STACK *x509_chain;      /* certificate chain */
169 #else
170         char *x509_chain;       /* certificate chain */
171 #endif
172         EVP_MD *md;             /* signature type */
173
174         int md_enc;             /* is the md encrypted or not? */
175         int md_len;             /* length of md_data */
176         char *md_data;          /* message digest, could be pkey encrypted */
177
178         EVP_CIPHER *dec;        /* date encryption cipher */
179         int key_len;            /* key length */
180         unsigned char *key;     /* key */
181         unsigned char iv[8];    /* the iv */
182
183         
184         int  data_enc;          /* is the data encrypted */
185         int data_len;
186         unsigned char *data;
187         } PEM_CTX;
188
189 /* These macros make the PEM_read/PEM_write functions easier to maintain and
190  * write. Now they are all implemented with either:
191  * IMPLEMENT_PEM_rw(...) or IMPLEMENT_PEM_rw_cb(...)
192  */
193
194 #ifdef NO_FP_API
195
196 #define IMPLEMENT_PEM_read_fp(name, type, str, asn1) /**/
197 #define IMPLEMENT_PEM_write_fp(name, type, str, asn1) /**/
198 #define IMPLEMENT_PEM_write_cb_fp(name, type, str, asn1) /**/
199
200 #else
201
202 #define IMPLEMENT_PEM_read_fp(name, type, str, asn1) \
203 type *PEM_read_##name(FILE *fp, type **x, pem_password_cb *cb, void *u)\
204 { \
205 return((type *)PEM_ASN1_read((char *(*)())d2i_##asn1, str,fp,(char **)x,\
206         cb,u)); \
207 } \
208
209 #define IMPLEMENT_PEM_write_fp(name, type, str, asn1) \
210 int PEM_write_##name(FILE *fp, type *x) \
211 { \
212 return(PEM_ASN1_write((int (*)())i2d_##asn1,str,fp, (char *)x, \
213                                                          NULL,NULL,0,NULL,NULL)); \
214
215
216 #define IMPLEMENT_PEM_write_cb_fp(name, type, str, asn1) \
217 int PEM_write_##name(FILE *fp, type *x, const EVP_CIPHER *enc, \
218              unsigned char *kstr, int klen, pem_password_cb *cb, \
219                   void *u) \
220         { \
221         return(PEM_ASN1_write((int (*)())i2d_##asn1,str,fp, \
222                 (char *)x,enc,kstr,klen,cb,u)); \
223         }
224
225 #endif
226
227 #define IMPLEMENT_PEM_read_bio(name, type, str, asn1) \
228 type *PEM_read_bio_##name(BIO *bp, type **x, pem_password_cb *cb, void *u)\
229 { \
230 return((type *)PEM_ASN1_read_bio((char *(*)())d2i_##asn1, str,bp,\
231                                                         (char **)x,cb,u)); \
232 }
233
234 #define IMPLEMENT_PEM_write_bio(name, type, str, asn1) \
235 int PEM_write_bio_##name(BIO *bp, type *x) \
236 { \
237 return(PEM_ASN1_write_bio((int (*)())i2d_##asn1,str,bp, (char *)x, \
238                                                          NULL,NULL,0,NULL,NULL)); \
239 }
240
241 #define IMPLEMENT_PEM_write_cb_bio(name, type, str, asn1) \
242 int PEM_write_bio_##name(BIO *bp, type *x, const EVP_CIPHER *enc, \
243              unsigned char *kstr, int klen, pem_password_cb *cb, void *u) \
244         { \
245         return(PEM_ASN1_write_bio((int (*)())i2d_##asn1,str,bp, \
246                 (char *)x,enc,kstr,klen,cb,u)); \
247         }
248
249 #define IMPLEMENT_PEM_write(name, type, str, asn1) \
250         IMPLEMENT_PEM_write_bio(name, type, str, asn1) \
251         IMPLEMENT_PEM_write_fp(name, type, str, asn1) 
252
253 #define IMPLEMENT_PEM_write_cb(name, type, str, asn1) \
254         IMPLEMENT_PEM_write_cb_bio(name, type, str, asn1) \
255         IMPLEMENT_PEM_write_cb_fp(name, type, str, asn1) 
256
257 #define IMPLEMENT_PEM_read(name, type, str, asn1) \
258         IMPLEMENT_PEM_read_bio(name, type, str, asn1) \
259         IMPLEMENT_PEM_read_fp(name, type, str, asn1) 
260
261 #define IMPLEMENT_PEM_rw(name, type, str, asn1) \
262         IMPLEMENT_PEM_read(name, type, str, asn1) \
263         IMPLEMENT_PEM_write(name, type, str, asn1)
264
265 #define IMPLEMENT_PEM_rw_cb(name, type, str, asn1) \
266         IMPLEMENT_PEM_read(name, type, str, asn1) \
267         IMPLEMENT_PEM_write_cb(name, type, str, asn1)
268
269 /* These are the same except they are for the declarations */
270
271 #if defined(WIN16) || defined(NO_FP_API)
272
273 #define DECLARE_PEM_read_fp(name, type) /**/
274 #define DECLARE_PEM_write_fp(name, type) /**/
275 #define DECLARE_PEM_write_cb_fp(name, type) /**/
276
277 #else
278
279 #define DECLARE_PEM_read_fp(name, type) \
280         type *PEM_read_##name(FILE *fp, type **x, pem_password_cb *cb, void *u);
281
282 #define DECLARE_PEM_write_fp(name, type) \
283         int PEM_write_##name(FILE *fp, type *x);
284
285 #define DECLARE_PEM_write_cb_fp(name, type) \
286         int PEM_write_##name(FILE *fp, type *x, const EVP_CIPHER *enc, \
287              unsigned char *kstr, int klen, pem_password_cb *cb, void *u);
288
289 #endif
290
291 #ifdef HEADER_BIO_H
292 #define DECLARE_PEM_read_bio(name, type) \
293         type *PEM_read_bio_##name(BIO *bp, type **x, pem_password_cb *cb, void *u);
294
295 #define DECLARE_PEM_write_bio(name, type) \
296         int PEM_write_bio_##name(BIO *bp, type *x);
297
298 #define DECLARE_PEM_write_cb_bio(name, type) \
299         int PEM_write_bio_##name(BIO *bp, type *x, const EVP_CIPHER *enc, \
300              unsigned char *kstr, int klen, pem_password_cb *cb, void *u);
301
302 #else
303
304 #define DECLARE_PEM_read_bio(name, type) /**/
305 #define DECLARE_PEM_write_bio(name, type) /**/
306 #define DECLARE_PEM_write_cb_bio(name, type) /**/
307
308 #endif
309
310 #define DECLARE_PEM_write(name, type) \
311         DECLARE_PEM_write_bio(name, type) \
312         DECLARE_PEM_write_fp(name, type) 
313
314 #define DECLARE_PEM_write_cb(name, type) \
315         DECLARE_PEM_write_cb_bio(name, type) \
316         DECLARE_PEM_write_cb_fp(name, type) 
317
318 #define DECLARE_PEM_read(name, type) \
319         DECLARE_PEM_read_bio(name, type) \
320         DECLARE_PEM_read_fp(name, type)
321
322 #define DECLARE_PEM_rw(name, type) \
323         DECLARE_PEM_read(name, type) \
324         DECLARE_PEM_write(name, type)
325
326 #define DECLARE_PEM_rw_cb(name, type) \
327         DECLARE_PEM_read(name, type) \
328         DECLARE_PEM_write_cb(name, type)
329
330 #ifdef SSLEAY_MACROS
331
332 #define PEM_write_SSL_SESSION(fp,x) \
333                 PEM_ASN1_write((int (*)())i2d_SSL_SESSION, \
334                         PEM_STRING_SSL_SESSION,fp, (char *)x, NULL,NULL,0,NULL,NULL)
335 #define PEM_write_X509(fp,x) \
336                 PEM_ASN1_write((int (*)())i2d_X509,PEM_STRING_X509,fp, \
337                         (char *)x, NULL,NULL,0,NULL,NULL)
338 #define PEM_write_X509_REQ(fp,x) PEM_ASN1_write( \
339                 (int (*)())i2d_X509_REQ,PEM_STRING_X509_REQ,fp,(char *)x, \
340                         NULL,NULL,0,NULL,NULL)
341 #define PEM_write_X509_CRL(fp,x) \
342                 PEM_ASN1_write((int (*)())i2d_X509_CRL,PEM_STRING_X509_CRL, \
343                         fp,(char *)x, NULL,NULL,0,NULL,NULL)
344 #define PEM_write_RSAPrivateKey(fp,x,enc,kstr,klen,cb,u) \
345                 PEM_ASN1_write((int (*)())i2d_RSAPrivateKey,PEM_STRING_RSA,fp,\
346                         (char *)x,enc,kstr,klen,cb,u)
347 #define PEM_write_RSAPublicKey(fp,x) \
348                 PEM_ASN1_write((int (*)())i2d_RSAPublicKey,\
349                         PEM_STRING_RSA_PUBLIC,fp,(char *)x,NULL,NULL,0,NULL,NULL)
350 #define PEM_write_DSAPrivateKey(fp,x,enc,kstr,klen,cb,u) \
351                 PEM_ASN1_write((int (*)())i2d_DSAPrivateKey,PEM_STRING_DSA,fp,\
352                         (char *)x,enc,kstr,klen,cb,u)
353 #define PEM_write_PrivateKey(bp,x,enc,kstr,klen,cb,u) \
354                 PEM_ASN1_write((int (*)())i2d_PrivateKey,\
355                 (((x)->type == EVP_PKEY_DSA)?PEM_STRING_DSA:PEM_STRING_RSA),\
356                         bp,(char *)x,enc,kstr,klen,cb,u)
357 #define PEM_write_PKCS7(fp,x) \
358                 PEM_ASN1_write((int (*)())i2d_PKCS7,PEM_STRING_PKCS7,fp, \
359                         (char *)x, NULL,NULL,0,NULL,NULL)
360 #define PEM_write_DHparams(fp,x) \
361                 PEM_ASN1_write((int (*)())i2d_DHparams,PEM_STRING_DHPARAMS,fp,\
362                         (char *)x,NULL,NULL,0,NULL,NULL)
363
364 #define PEM_write_NETSCAPE_CERT_SEQUENCE(fp,x) \
365                 PEM_ASN1_write((int (*)())i2d_NETSCAPE_CERT_SEQUENCE, \
366                         PEM_STRING_X509,fp, \
367                         (char *)x, NULL,NULL,0,NULL,NULL)
368
369 #define PEM_read_SSL_SESSION(fp,x,cb,u) (SSL_SESSION *)PEM_ASN1_read( \
370         (char *(*)())d2i_SSL_SESSION,PEM_STRING_SSL_SESSION,fp,(char **)x,cb,u)
371 #define PEM_read_X509(fp,x,cb,u) (X509 *)PEM_ASN1_read( \
372         (char *(*)())d2i_X509,PEM_STRING_X509,fp,(char **)x,cb,u)
373 #define PEM_read_X509_REQ(fp,x,cb,u) (X509_REQ *)PEM_ASN1_read( \
374         (char *(*)())d2i_X509_REQ,PEM_STRING_X509_REQ,fp,(char **)x,cb,u)
375 #define PEM_read_X509_CRL(fp,x,cb,u) (X509_CRL *)PEM_ASN1_read( \
376         (char *(*)())d2i_X509_CRL,PEM_STRING_X509_CRL,fp,(char **)x,cb,u)
377 #define PEM_read_RSAPrivateKey(fp,x,cb,u) (RSA *)PEM_ASN1_read( \
378         (char *(*)())d2i_RSAPrivateKey,PEM_STRING_RSA,fp,(char **)x,cb,u)
379 #define PEM_read_RSAPublicKey(fp,x,cb,u) (RSA *)PEM_ASN1_read( \
380         (char *(*)())d2i_RSAPublicKey,PEM_STRING_RSA_PUBLIC,fp,(char **)x,cb,u)
381 #define PEM_read_DSAPrivateKey(fp,x,cb,u) (DSA *)PEM_ASN1_read( \
382         (char *(*)())d2i_DSAPrivateKey,PEM_STRING_DSA,fp,(char **)x,cb,u)
383 #define PEM_read_PrivateKey(fp,x,cb,u) (EVP_PKEY *)PEM_ASN1_read( \
384         (char *(*)())d2i_PrivateKey,PEM_STRING_EVP_PKEY,fp,(char **)x,cb,u)
385 #define PEM_read_PKCS7(fp,x,cb,u) (PKCS7 *)PEM_ASN1_read( \
386         (char *(*)())d2i_PKCS7,PEM_STRING_PKCS7,fp,(char **)x,cb,u)
387 #define PEM_read_DHparams(fp,x,cb,u) (DH *)PEM_ASN1_read( \
388         (char *(*)())d2i_DHparams,PEM_STRING_DHPARAMS,fp,(char **)x,cb,u)
389
390 #define PEM_read_NETSCAPE_CERT_SEQUENCE(fp,x,cb,u) \
391                 (NETSCAPE_CERT_SEQUENCE *)PEM_ASN1_read( \
392         (char *(*)())d2i_NETSCAPE_CERT_SEQUENCE,PEM_STRING_X509,fp,\
393                                                         (char **)x,cb,u)
394
395 #define PEM_write_bio_SSL_SESSION(bp,x) \
396                 PEM_ASN1_write_bio((int (*)())i2d_SSL_SESSION, \
397                         PEM_STRING_SSL_SESSION,bp, (char *)x, NULL,NULL,0,NULL,NULL)
398 #define PEM_write_bio_X509(bp,x) \
399                 PEM_ASN1_write_bio((int (*)())i2d_X509,PEM_STRING_X509,bp, \
400                         (char *)x, NULL,NULL,0,NULL,NULL)
401 #define PEM_write_bio_X509_REQ(bp,x) PEM_ASN1_write_bio( \
402                 (int (*)())i2d_X509_REQ,PEM_STRING_X509_REQ,bp,(char *)x, \
403                         NULL,NULL,0,NULL,NULL)
404 #define PEM_write_bio_X509_CRL(bp,x) \
405                 PEM_ASN1_write_bio((int (*)())i2d_X509_CRL,PEM_STRING_X509_CRL,\
406                         bp,(char *)x, NULL,NULL,0,NULL,NULL)
407 #define PEM_write_bio_RSAPrivateKey(bp,x,enc,kstr,klen,cb,u) \
408                 PEM_ASN1_write_bio((int (*)())i2d_RSAPrivateKey,PEM_STRING_RSA,\
409                         bp,(char *)x,enc,kstr,klen,cb,u)
410 #define PEM_write_bio_RSAPublicKey(bp,x) \
411                 PEM_ASN1_write_bio((int (*)())i2d_RSAPublicKey, \
412                         PEM_STRING_RSA_PUBLIC,\
413                         bp,(char *)x,NULL,NULL,0,NULL,NULL)
414 #define PEM_write_bio_DSAPrivateKey(bp,x,enc,kstr,klen,cb,u) \
415                 PEM_ASN1_write_bio((int (*)())i2d_DSAPrivateKey,PEM_STRING_DSA,\
416                         bp,(char *)x,enc,kstr,klen,cb,u)
417 #define PEM_write_bio_PrivateKey(bp,x,enc,kstr,klen,cb,u) \
418                 PEM_ASN1_write_bio((int (*)())i2d_PrivateKey,\
419                 (((x)->type == EVP_PKEY_DSA)?PEM_STRING_DSA:PEM_STRING_RSA),\
420                         bp,(char *)x,enc,kstr,klen,cb,u)
421 #define PEM_write_bio_PKCS7(bp,x) \
422                 PEM_ASN1_write_bio((int (*)())i2d_PKCS7,PEM_STRING_PKCS7,bp, \
423                         (char *)x, NULL,NULL,0,NULL,NULL)
424 #define PEM_write_bio_DHparams(bp,x) \
425                 PEM_ASN1_write_bio((int (*)())i2d_DHparams,PEM_STRING_DHPARAMS,\
426                         bp,(char *)x,NULL,NULL,0,NULL,NULL)
427 #define PEM_write_bio_DSAparams(bp,x) \
428                 PEM_ASN1_write_bio((int (*)())i2d_DSAparams, \
429                         PEM_STRING_DSAPARAMS,bp,(char *)x,NULL,NULL,0,NULL,NULL)
430
431 #define PEM_write_bio_NETSCAPE_CERT_SEQUENCE(bp,x) \
432                 PEM_ASN1_write_bio((int (*)())i2d_NETSCAPE_CERT_SEQUENCE, \
433                         PEM_STRING_X509,bp, \
434                         (char *)x, NULL,NULL,0,NULL,NULL)
435
436 #define PEM_read_bio_SSL_SESSION(bp,x,cb,u) (SSL_SESSION *)PEM_ASN1_read_bio( \
437         (char *(*)())d2i_SSL_SESSION,PEM_STRING_SSL_SESSION,bp,(char **)x,cb,u)
438 #define PEM_read_bio_X509(bp,x,cb,u) (X509 *)PEM_ASN1_read_bio( \
439         (char *(*)())d2i_X509,PEM_STRING_X509,bp,(char **)x,cb,u)
440 #define PEM_read_bio_X509_REQ(bp,x,cb,u) (X509_REQ *)PEM_ASN1_read_bio( \
441         (char *(*)())d2i_X509_REQ,PEM_STRING_X509_REQ,bp,(char **)x,cb,u)
442 #define PEM_read_bio_X509_CRL(bp,x,cb,u) (X509_CRL *)PEM_ASN1_read_bio( \
443         (char *(*)())d2i_X509_CRL,PEM_STRING_X509_CRL,bp,(char **)x,cb,u)
444 #define PEM_read_bio_RSAPrivateKey(bp,x,cb,u) (RSA *)PEM_ASN1_read_bio( \
445         (char *(*)())d2i_RSAPrivateKey,PEM_STRING_RSA,bp,(char **)x,cb,u)
446 #define PEM_read_bio_RSAPublicKey(bp,x,cb,u) (RSA *)PEM_ASN1_read_bio( \
447         (char *(*)())d2i_RSAPublicKey,PEM_STRING_RSA_PUBLIC,bp,(char **)x,cb,u)
448 #define PEM_read_bio_DSAPrivateKey(bp,x,cb,u) (DSA *)PEM_ASN1_read_bio( \
449         (char *(*)())d2i_DSAPrivateKey,PEM_STRING_DSA,bp,(char **)x,cb,u)
450 #define PEM_read_bio_PrivateKey(bp,x,cb,u) (EVP_PKEY *)PEM_ASN1_read_bio( \
451         (char *(*)())d2i_PrivateKey,PEM_STRING_EVP_PKEY,bp,(char **)x,cb,u)
452
453 #define PEM_read_bio_PKCS7(bp,x,cb,u) (PKCS7 *)PEM_ASN1_read_bio( \
454         (char *(*)())d2i_PKCS7,PEM_STRING_PKCS7,bp,(char **)x,cb,u)
455 #define PEM_read_bio_DHparams(bp,x,cb,u) (DH *)PEM_ASN1_read_bio( \
456         (char *(*)())d2i_DHparams,PEM_STRING_DHPARAMS,bp,(char **)x,cb,u)
457 #define PEM_read_bio_DSAparams(bp,x,cb,u) (DSA *)PEM_ASN1_read_bio( \
458         (char *(*)())d2i_DSAparams,PEM_STRING_DSAPARAMS,bp,(char **)x,cb,u)
459
460 #define PEM_read_bio_NETSCAPE_CERT_SEQUENCE(bp,x,cb,u) \
461                 (NETSCAPE_CERT_SEQUENCE *)PEM_ASN1_read_bio( \
462         (char *(*)())d2i_NETSCAPE_CERT_SEQUENCE,PEM_STRING_X509,bp,\
463                                                         (char **)x,cb,u)
464
465 #endif
466
467 #if 1
468 /* "userdata": new with OpenSSL 0.9.4 */
469 typedef int pem_password_cb(char *buf, int size, int rwflag, void *userdata);
470 #else
471 /* OpenSSL 0.9.3, 0.9.3a */
472 typedef int pem_password_cb(char *buf, int size, int rwflag);
473 #endif
474
475 int     PEM_get_EVP_CIPHER_INFO(char *header, EVP_CIPHER_INFO *cipher);
476 int     PEM_do_header (EVP_CIPHER_INFO *cipher, unsigned char *data,long *len,
477         pem_password_cb *callback,void *u);
478
479 #ifdef HEADER_BIO_H
480 int     PEM_read_bio(BIO *bp, char **name, char **header,
481                 unsigned char **data,long *len);
482 int     PEM_write_bio(BIO *bp,const char *name,char *hdr,unsigned char *data,
483                 long len);
484 char *  PEM_ASN1_read_bio(char *(*d2i)(),const char *name,BIO *bp,char **x,
485                 pem_password_cb *cb, void *u);
486 int     PEM_ASN1_write_bio(int (*i2d)(),const char *name,BIO *bp,char *x,
487                            const EVP_CIPHER *enc,unsigned char *kstr,int klen,
488                            pem_password_cb *cb, void *u);
489 STACK_OF(X509_INFO) *   PEM_X509_INFO_read_bio(BIO *bp, STACK_OF(X509_INFO) *sk, pem_password_cb *cb, void *u);
490 int     PEM_X509_INFO_write_bio(BIO *bp,X509_INFO *xi, EVP_CIPHER *enc,
491                 unsigned char *kstr, int klen, pem_password_cb *cd, void *u);
492 #endif
493
494 #ifndef WIN16
495 int     PEM_read(FILE *fp, char **name, char **header,
496                 unsigned char **data,long *len);
497 int     PEM_write(FILE *fp,char *name,char *hdr,unsigned char *data,long len);
498 char *  PEM_ASN1_read(char *(*d2i)(),const char *name,FILE *fp,char **x,
499         pem_password_cb *cb, void *u);
500 int     PEM_ASN1_write(int (*i2d)(),const char *name,FILE *fp,char *x,
501                        const EVP_CIPHER *enc,unsigned char *kstr,int klen,
502                        pem_password_cb *callback, void *u);
503 STACK_OF(X509_INFO) *   PEM_X509_INFO_read(FILE *fp, STACK_OF(X509_INFO) *sk,
504         pem_password_cb *cb, void *u);
505 #endif
506
507 int     PEM_SealInit(PEM_ENCODE_SEAL_CTX *ctx, EVP_CIPHER *type,
508                 EVP_MD *md_type, unsigned char **ek, int *ekl,
509                 unsigned char *iv, EVP_PKEY **pubk, int npubk);
510 void    PEM_SealUpdate(PEM_ENCODE_SEAL_CTX *ctx, unsigned char *out, int *outl,
511                 unsigned char *in, int inl);
512 int     PEM_SealFinal(PEM_ENCODE_SEAL_CTX *ctx, unsigned char *sig,int *sigl,
513                 unsigned char *out, int *outl, EVP_PKEY *priv);
514
515 void    PEM_SignInit(EVP_MD_CTX *ctx, EVP_MD *type);
516 void    PEM_SignUpdate(EVP_MD_CTX *ctx,unsigned char *d,unsigned int cnt);
517 int     PEM_SignFinal(EVP_MD_CTX *ctx, unsigned char *sigret,
518                 unsigned int *siglen, EVP_PKEY *pkey);
519
520 void    ERR_load_PEM_strings(void);
521
522 void    PEM_proc_type(char *buf, int type);
523 void    PEM_dek_info(char *buf, const char *type, int len, char *str);
524
525 #ifndef SSLEAY_MACROS
526
527 #ifdef VMS
528 #include <openssl/vms_idhacks.h>
529 #endif
530
531 DECLARE_PEM_rw(X509, X509)
532
533 DECLARE_PEM_rw(X509_AUX, X509)
534
535 DECLARE_PEM_rw(X509_REQ, X509_REQ)
536
537 DECLARE_PEM_rw(X509_CRL, X509_CRL)
538
539 DECLARE_PEM_rw(PKCS7, PKCS7)
540
541 DECLARE_PEM_rw(NETSCAPE_CERT_SEQUENCE, NETSCAPE_CERT_SEQUENCE)
542
543 DECLARE_PEM_rw(PKCS8, X509_SIG)
544
545 DECLARE_PEM_rw(PKCS8_PRIV_KEY_INFO, PKCS8_PRIV_KEY_INFO)
546
547 #ifndef NO_RSA
548
549 DECLARE_PEM_rw_cb(RSAPrivateKey, RSA)
550
551 DECLARE_PEM_rw(RSAPublicKey, RSA)
552
553 #endif
554
555 #ifndef NO_DSA
556
557 DECLARE_PEM_rw_cb(DSAPrivateKey, DSA)
558
559 DECLARE_PEM_rw(DSAPublicKey, DSA)
560
561 DECLARE_PEM_rw(DSAparams, DSA)
562
563 #endif
564
565 #ifndef NO_DH
566
567 DECLARE_PEM_rw(DHparams, DH)
568
569 #endif
570
571 DECLARE_PEM_rw_cb(PrivateKey, EVP_PKEY)
572
573 int PEM_write_bio_PKCS8PrivateKey(BIO *, EVP_PKEY *, const EVP_CIPHER *,
574                                   char *, int, pem_password_cb *, void *);
575 int PEM_write_PKCS8PrivateKey(FILE *fp,EVP_PKEY *x,const EVP_CIPHER *enc,
576                               char *kstr,int klen, pem_password_cb *cd, void *u);
577 #endif /* SSLEAY_MACROS */
578
579
580 /* BEGIN ERROR CODES */
581 /* The following lines are auto generated by the script mkerr.pl. Any changes
582  * made after this point may be overwritten when the script is next run.
583  */
584
585 /* Error codes for the PEM functions. */
586
587 /* Function codes. */
588 #define PEM_F_DEF_CALLBACK                               100
589 #define PEM_F_LOAD_IV                                    101
590 #define PEM_F_PEM_ASN1_READ                              102
591 #define PEM_F_PEM_ASN1_READ_BIO                          103
592 #define PEM_F_PEM_ASN1_WRITE                             104
593 #define PEM_F_PEM_ASN1_WRITE_BIO                         105
594 #define PEM_F_PEM_DO_HEADER                              106
595 #define PEM_F_PEM_F_PEM_WRITE_PKCS8PRIVATEKEY            118
596 #define PEM_F_PEM_GET_EVP_CIPHER_INFO                    107
597 #define PEM_F_PEM_READ                                   108
598 #define PEM_F_PEM_READ_BIO                               109
599 #define PEM_F_PEM_SEALFINAL                              110
600 #define PEM_F_PEM_SEALINIT                               111
601 #define PEM_F_PEM_SIGNFINAL                              112
602 #define PEM_F_PEM_WRITE                                  113
603 #define PEM_F_PEM_WRITE_BIO                              114
604 #define PEM_F_PEM_WRITE_BIO_PKCS8PRIVATEKEY              119
605 #define PEM_F_PEM_X509_INFO_READ                         115
606 #define PEM_F_PEM_X509_INFO_READ_BIO                     116
607 #define PEM_F_PEM_X509_INFO_WRITE_BIO                    117
608
609 /* Reason codes. */
610 #define PEM_R_BAD_BASE64_DECODE                          100
611 #define PEM_R_BAD_DECRYPT                                101
612 #define PEM_R_BAD_END_LINE                               102
613 #define PEM_R_BAD_IV_CHARS                               103
614 #define PEM_R_BAD_PASSWORD_READ                          104
615 #define PEM_R_ERROR_CONVERTING_PRIVATE_KEY               115
616 #define PEM_R_NOT_DEK_INFO                               105
617 #define PEM_R_NOT_ENCRYPTED                              106
618 #define PEM_R_NOT_PROC_TYPE                              107
619 #define PEM_R_NO_START_LINE                              108
620 #define PEM_R_PROBLEMS_GETTING_PASSWORD                  109
621 #define PEM_R_PUBLIC_KEY_NO_RSA                          110
622 #define PEM_R_READ_KEY                                   111
623 #define PEM_R_SHORT_HEADER                               112
624 #define PEM_R_UNSUPPORTED_CIPHER                         113
625 #define PEM_R_UNSUPPORTED_ENCRYPTION                     114
626
627 #ifdef  __cplusplus
628 }
629 #endif
630 #endif
631