Cosmetic change. No, openssl.h.in is not autogenerated :-)
[openssl.git] / crypto / pem / pem_lib.c
1 /* crypto/pem/pem_lib.c */
2 /* Copyright (C) 1995-1998 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 #include <stdio.h>
60 #include "cryptlib.h"
61 #include <openssl/buffer.h>
62 #include <openssl/objects.h>
63 #include <openssl/evp.h>
64 #include <openssl/rand.h>
65 #include <openssl/x509.h>
66 #include <openssl/pem.h>
67 #include <openssl/pkcs12.h>
68 #ifndef NO_DES
69 #include <openssl/des.h>
70 #endif
71
72 const char *PEM_version="PEM" OPENSSL_VERSION_PTEXT;
73
74 #define MIN_LENGTH      4
75
76 static int def_callback(char *buf, int num, int w, void *userdata);
77 static int load_iv(unsigned char **fromp,unsigned char *to, int num);
78 static int check_pem(const char *nm, const char *name);
79 static int do_pk8pkey(BIO *bp, EVP_PKEY *x, int isder,
80                                 int nid, const EVP_CIPHER *enc,
81                                 char *kstr, int klen,
82                                 pem_password_cb *cb, void *u);
83 static int do_pk8pkey_fp(FILE *bp, EVP_PKEY *x, int isder,
84                                 int nid, const EVP_CIPHER *enc,
85                                 char *kstr, int klen,
86                                 pem_password_cb *cb, void *u);
87
88 static int def_callback(char *buf, int num, int w, void *key)
89         {
90 #ifdef NO_FP_API
91         /* We should not ever call the default callback routine from
92          * windows. */
93         PEMerr(PEM_F_DEF_CALLBACK,ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
94         return(-1);
95 #else
96         int i,j;
97         const char *prompt;
98         if(key) {
99                 i=strlen(key);
100                 i=(i > num)?num:i;
101                 memcpy(buf,key,i);
102                 return(i);
103         }
104
105         prompt=EVP_get_pw_prompt();
106         if (prompt == NULL)
107                 prompt="Enter PEM pass phrase:";
108
109         for (;;)
110                 {
111                 i=EVP_read_pw_string(buf,num,prompt,w);
112                 if (i != 0)
113                         {
114                         PEMerr(PEM_F_DEF_CALLBACK,PEM_R_PROBLEMS_GETTING_PASSWORD);
115                         memset(buf,0,(unsigned int)num);
116                         return(-1);
117                         }
118                 j=strlen(buf);
119                 if (j < MIN_LENGTH)
120                         {
121                         fprintf(stderr,"phrase is too short, needs to be at least %d chars\n",MIN_LENGTH);
122                         }
123                 else
124                         break;
125                 }
126         return(j);
127 #endif
128         }
129
130 void PEM_proc_type(char *buf, int type)
131         {
132         const char *str;
133
134         if (type == PEM_TYPE_ENCRYPTED)
135                 str="ENCRYPTED";
136         else if (type == PEM_TYPE_MIC_CLEAR)
137                 str="MIC-CLEAR";
138         else if (type == PEM_TYPE_MIC_ONLY)
139                 str="MIC-ONLY";
140         else
141                 str="BAD-TYPE";
142                 
143         strcat(buf,"Proc-Type: 4,");
144         strcat(buf,str);
145         strcat(buf,"\n");
146         }
147
148 void PEM_dek_info(char *buf, const char *type, int len, char *str)
149         {
150         static unsigned char map[17]="0123456789ABCDEF";
151         long i;
152         int j;
153
154         strcat(buf,"DEK-Info: ");
155         strcat(buf,type);
156         strcat(buf,",");
157         j=strlen(buf);
158         for (i=0; i<len; i++)
159                 {
160                 buf[j+i*2]  =map[(str[i]>>4)&0x0f];
161                 buf[j+i*2+1]=map[(str[i]   )&0x0f];
162                 }
163         buf[j+i*2]='\n';
164         buf[j+i*2+1]='\0';
165         }
166
167 #ifndef NO_FP_API
168 char *PEM_ASN1_read(char *(*d2i)(), const char *name, FILE *fp, char **x,
169              pem_password_cb *cb, void *u)
170         {
171         BIO *b;
172         char *ret;
173
174         if ((b=BIO_new(BIO_s_file())) == NULL)
175                 {
176                 PEMerr(PEM_F_PEM_ASN1_READ,ERR_R_BUF_LIB);
177                 return(0);
178                 }
179         BIO_set_fp(b,fp,BIO_NOCLOSE);
180         ret=PEM_ASN1_read_bio(d2i,name,b,x,cb,u);
181         BIO_free(b);
182         return(ret);
183         }
184 #endif
185
186 static int check_pem(const char *nm, const char *name)
187 {
188         /* Normal matching nm and name */
189         if (!strcmp(nm,name)) return 1;
190
191         /* Make PEM_STRING_EVP_PKEY match any private key */
192
193         if(!strcmp(nm,PEM_STRING_PKCS8) &&
194                 !strcmp(name,PEM_STRING_EVP_PKEY)) return 1;
195
196         if(!strcmp(nm,PEM_STRING_PKCS8INF) &&
197                  !strcmp(name,PEM_STRING_EVP_PKEY)) return 1;
198
199         if(!strcmp(nm,PEM_STRING_RSA) &&
200                 !strcmp(name,PEM_STRING_EVP_PKEY)) return 1;
201
202         if(!strcmp(nm,PEM_STRING_DSA) &&
203                  !strcmp(name,PEM_STRING_EVP_PKEY)) return 1;
204
205         /* Permit older strings */
206
207         if(!strcmp(nm,PEM_STRING_X509_OLD) &&
208                 !strcmp(name,PEM_STRING_X509)) return 1;
209
210         if(!strcmp(nm,PEM_STRING_X509_REQ_OLD) &&
211                 !strcmp(name,PEM_STRING_X509_REQ)) return 1;
212
213         /* Allow normal certs to be read as trusted certs */
214         if(!strcmp(nm,PEM_STRING_X509) &&
215                 !strcmp(name,PEM_STRING_X509_TRUSTED)) return 1;
216
217         if(!strcmp(nm,PEM_STRING_X509_OLD) &&
218                 !strcmp(name,PEM_STRING_X509_TRUSTED)) return 1;
219
220         return 0;
221 }
222
223 char *PEM_ASN1_read_bio(char *(*d2i)(), const char *name, BIO *bp, char **x,
224              pem_password_cb *cb, void *u)
225         {
226         EVP_CIPHER_INFO cipher;
227         char *nm=NULL,*header=NULL;
228         unsigned char *p=NULL,*data=NULL;
229         long len;
230         char *ret=NULL;
231
232         for (;;)
233                 {
234                 if (!PEM_read_bio(bp,&nm,&header,&data,&len)) {
235                         if(ERR_GET_REASON(ERR_peek_error()) ==
236                                 PEM_R_NO_START_LINE)
237                                 ERR_add_error_data(2, "Expecting: ", name);
238                         return(NULL);
239                 }
240                 if(check_pem(nm, name)) break;
241                 Free(nm);
242                 Free(header);
243                 Free(data);
244                 }
245         if (!PEM_get_EVP_CIPHER_INFO(header,&cipher)) goto err;
246         if (!PEM_do_header(&cipher,data,&len,cb,u)) goto err;
247         p=data;
248         if (strcmp(name,PEM_STRING_EVP_PKEY) == 0) {
249                 if (strcmp(nm,PEM_STRING_RSA) == 0)
250                         ret=d2i(EVP_PKEY_RSA,x,&p,len);
251                 else if (strcmp(nm,PEM_STRING_DSA) == 0)
252                         ret=d2i(EVP_PKEY_DSA,x,&p,len);
253                 else if (strcmp(nm,PEM_STRING_PKCS8INF) == 0) {
254                         PKCS8_PRIV_KEY_INFO *p8inf;
255                         p8inf=d2i_PKCS8_PRIV_KEY_INFO(
256                                         (PKCS8_PRIV_KEY_INFO **) x, &p, len);
257                         ret = (char *)EVP_PKCS82PKEY(p8inf);
258                         PKCS8_PRIV_KEY_INFO_free(p8inf);
259                 } else if (strcmp(nm,PEM_STRING_PKCS8) == 0) {
260                         PKCS8_PRIV_KEY_INFO *p8inf;
261                         X509_SIG *p8;
262                         int klen;
263                         char psbuf[PEM_BUFSIZE];
264                         p8 = d2i_X509_SIG(NULL, &p, len);
265                         if(!p8) goto p8err;
266                         if (cb) klen=cb(psbuf,PEM_BUFSIZE,0,u);
267                         else klen=def_callback(psbuf,PEM_BUFSIZE,0,u);
268                         if (klen <= 0) {
269                                 PEMerr(PEM_F_PEM_ASN1_READ_BIO,
270                                                 PEM_R_BAD_PASSWORD_READ);
271                                 goto err;
272                         }
273                         p8inf = M_PKCS8_decrypt(p8, psbuf, klen);
274                         X509_SIG_free(p8);
275                         if(!p8inf) goto p8err;
276                         ret = (char *)EVP_PKCS82PKEY(p8inf);
277                         if(x) {
278                                 if(*x) EVP_PKEY_free((EVP_PKEY *)*x);
279                                 *x = ret;
280                         }
281                         PKCS8_PRIV_KEY_INFO_free(p8inf);
282                 }
283         } else  ret=d2i(x,&p,len);
284 p8err:
285         if (ret == NULL)
286                 PEMerr(PEM_F_PEM_ASN1_READ_BIO,ERR_R_ASN1_LIB);
287 err:
288         Free(nm);
289         Free(header);
290         Free(data);
291         return(ret);
292         }
293
294 #ifndef NO_FP_API
295 int PEM_ASN1_write(int (*i2d)(), const char *name, FILE *fp, char *x,
296              const EVP_CIPHER *enc, unsigned char *kstr, int klen,
297              pem_password_cb *callback, void *u)
298         {
299         BIO *b;
300         int ret;
301
302         if ((b=BIO_new(BIO_s_file())) == NULL)
303                 {
304                 PEMerr(PEM_F_PEM_ASN1_WRITE,ERR_R_BUF_LIB);
305                 return(0);
306                 }
307         BIO_set_fp(b,fp,BIO_NOCLOSE);
308         ret=PEM_ASN1_write_bio(i2d,name,b,x,enc,kstr,klen,callback,u);
309         BIO_free(b);
310         return(ret);
311         }
312 #endif
313
314 int PEM_ASN1_write_bio(int (*i2d)(), const char *name, BIO *bp, char *x,
315              const EVP_CIPHER *enc, unsigned char *kstr, int klen,
316              pem_password_cb *callback, void *u)
317         {
318         EVP_CIPHER_CTX ctx;
319         int dsize=0,i,j,ret=0;
320         unsigned char *p,*data=NULL;
321         const char *objstr=NULL;
322         char buf[PEM_BUFSIZE];
323         unsigned char key[EVP_MAX_KEY_LENGTH];
324         unsigned char iv[EVP_MAX_IV_LENGTH];
325         
326         if (enc != NULL)
327                 {
328                 objstr=OBJ_nid2sn(EVP_CIPHER_nid(enc));
329                 if (objstr == NULL)
330                         {
331                         PEMerr(PEM_F_PEM_ASN1_WRITE_BIO,PEM_R_UNSUPPORTED_CIPHER);
332                         goto err;
333                         }
334                 }
335
336         if ((dsize=i2d(x,NULL)) < 0)
337                 {
338                 PEMerr(PEM_F_PEM_ASN1_WRITE_BIO,ERR_R_MALLOC_FAILURE);
339                 dsize=0;
340                 goto err;
341                 }
342         /* dzise + 8 bytes are needed */
343         data=(unsigned char *)Malloc((unsigned int)dsize+20);
344         if (data == NULL)
345                 {
346                 PEMerr(PEM_F_PEM_ASN1_WRITE_BIO,ERR_R_MALLOC_FAILURE);
347                 goto err;
348                 }
349         p=data;
350         i=i2d(x,&p);
351
352         if (enc != NULL)
353                 {
354                 if (kstr == NULL)
355                         {
356                         if (callback == NULL)
357                                 klen=def_callback(buf,PEM_BUFSIZE,1,u);
358                         else
359                                 klen=(*callback)(buf,PEM_BUFSIZE,1,u);
360                         if (klen <= 0)
361                                 {
362                                 PEMerr(PEM_F_PEM_ASN1_WRITE_BIO,PEM_R_READ_KEY);
363                                 goto err;
364                                 }
365 #ifdef CHARSET_EBCDIC
366                         /* Convert the pass phrase from EBCDIC */
367                         ebcdic2ascii(buf, buf, klen);
368 #endif
369                         kstr=(unsigned char *)buf;
370                         }
371                 RAND_add(data,i,0);/* put in the RSA key. */
372                 if (RAND_bytes(iv,8) <= 0)      /* Generate a salt */
373                         goto err;
374                 /* The 'iv' is used as the iv and as a salt.  It is
375                  * NOT taken from the BytesToKey function */
376                 EVP_BytesToKey(enc,EVP_md5(),iv,kstr,klen,1,key,NULL);
377
378                 if (kstr == (unsigned char *)buf) memset(buf,0,PEM_BUFSIZE);
379
380                 buf[0]='\0';
381                 PEM_proc_type(buf,PEM_TYPE_ENCRYPTED);
382                 PEM_dek_info(buf,objstr,8,(char *)iv);
383                 /* k=strlen(buf); */
384         
385                 EVP_EncryptInit(&ctx,enc,key,iv);
386                 EVP_EncryptUpdate(&ctx,data,&j,data,i);
387                 EVP_EncryptFinal(&ctx,&(data[j]),&i);
388                 i+=j;
389                 ret=1;
390                 }
391         else
392                 {
393                 ret=1;
394                 buf[0]='\0';
395                 }
396         i=PEM_write_bio(bp,name,buf,data,i);
397         if (i <= 0) ret=0;
398 err:
399         memset(key,0,sizeof(key));
400         memset(iv,0,sizeof(iv));
401         memset((char *)&ctx,0,sizeof(ctx));
402         memset(buf,0,PEM_BUFSIZE);
403         memset(data,0,(unsigned int)dsize);
404         Free(data);
405         return(ret);
406         }
407
408 int PEM_do_header(EVP_CIPHER_INFO *cipher, unsigned char *data, long *plen,
409              pem_password_cb *callback,void *u)
410         {
411         int i,j,o,klen;
412         long len;
413         EVP_CIPHER_CTX ctx;
414         unsigned char key[EVP_MAX_KEY_LENGTH];
415         char buf[PEM_BUFSIZE];
416
417         len= *plen;
418
419         if (cipher->cipher == NULL) return(1);
420         if (callback == NULL)
421                 klen=def_callback(buf,PEM_BUFSIZE,0,u);
422         else
423                 klen=callback(buf,PEM_BUFSIZE,0,u);
424         if (klen <= 0)
425                 {
426                 PEMerr(PEM_F_PEM_DO_HEADER,PEM_R_BAD_PASSWORD_READ);
427                 return(0);
428                 }
429 #ifdef CHARSET_EBCDIC
430         /* Convert the pass phrase from EBCDIC */
431         ebcdic2ascii(buf, buf, klen);
432 #endif
433
434         EVP_BytesToKey(cipher->cipher,EVP_md5(),&(cipher->iv[0]),
435                 (unsigned char *)buf,klen,1,key,NULL);
436
437         j=(int)len;
438         EVP_DecryptInit(&ctx,cipher->cipher,key,&(cipher->iv[0]));
439         EVP_DecryptUpdate(&ctx,data,&i,data,j);
440         o=EVP_DecryptFinal(&ctx,&(data[i]),&j);
441         EVP_CIPHER_CTX_cleanup(&ctx);
442         memset((char *)buf,0,sizeof(buf));
443         memset((char *)key,0,sizeof(key));
444         j+=i;
445         if (!o)
446                 {
447                 PEMerr(PEM_F_PEM_DO_HEADER,PEM_R_BAD_DECRYPT);
448                 return(0);
449                 }
450         *plen=j;
451         return(1);
452         }
453
454 int PEM_get_EVP_CIPHER_INFO(char *header, EVP_CIPHER_INFO *cipher)
455         {
456         int o;
457         const EVP_CIPHER *enc=NULL;
458         char *p,c;
459
460         cipher->cipher=NULL;
461         if ((header == NULL) || (*header == '\0') || (*header == '\n'))
462                 return(1);
463         if (strncmp(header,"Proc-Type: ",11) != 0)
464                 { PEMerr(PEM_F_PEM_GET_EVP_CIPHER_INFO,PEM_R_NOT_PROC_TYPE); return(0); }
465         header+=11;
466         if (*header != '4') return(0); header++;
467         if (*header != ',') return(0); header++;
468         if (strncmp(header,"ENCRYPTED",9) != 0)
469                 { PEMerr(PEM_F_PEM_GET_EVP_CIPHER_INFO,PEM_R_NOT_ENCRYPTED); return(0); }
470         for (; (*header != '\n') && (*header != '\0'); header++)
471                 ;
472         if (*header == '\0')
473                 { PEMerr(PEM_F_PEM_GET_EVP_CIPHER_INFO,PEM_R_SHORT_HEADER); return(0); }
474         header++;
475         if (strncmp(header,"DEK-Info: ",10) != 0)
476                 { PEMerr(PEM_F_PEM_GET_EVP_CIPHER_INFO,PEM_R_NOT_DEK_INFO); return(0); }
477         header+=10;
478
479         p=header;
480         for (;;)
481                 {
482                 c= *header;
483 #ifndef CHARSET_EBCDIC
484                 if (!(  ((c >= 'A') && (c <= 'Z')) || (c == '-') ||
485                         ((c >= '0') && (c <= '9'))))
486                         break;
487 #else
488                 if (!(  isupper(c) || (c == '-') ||
489                         isdigit(c)))
490                         break;
491 #endif
492                 header++;
493                 }
494         *header='\0';
495         o=OBJ_sn2nid(p);
496         cipher->cipher=enc=EVP_get_cipherbyname(p);
497         *header=c;
498         header++;
499
500         if (enc == NULL)
501                 {
502                 PEMerr(PEM_F_PEM_GET_EVP_CIPHER_INFO,PEM_R_UNSUPPORTED_ENCRYPTION);
503                 return(0);
504                 }
505         if (!load_iv((unsigned char **)&header,&(cipher->iv[0]),8)) return(0);
506
507         return(1);
508         }
509
510 static int load_iv(unsigned char **fromp, unsigned char *to, int num)
511         {
512         int v,i;
513         unsigned char *from;
514
515         from= *fromp;
516         for (i=0; i<num; i++) to[i]=0;
517         num*=2;
518         for (i=0; i<num; i++)
519                 {
520                 if ((*from >= '0') && (*from <= '9'))
521                         v= *from-'0';
522                 else if ((*from >= 'A') && (*from <= 'F'))
523                         v= *from-'A'+10;
524                 else if ((*from >= 'a') && (*from <= 'f'))
525                         v= *from-'a'+10;
526                 else
527                         {
528                         PEMerr(PEM_F_LOAD_IV,PEM_R_BAD_IV_CHARS);
529                         return(0);
530                         }
531                 from++;
532                 to[i/2]|=v<<(long)((!(i&1))*4);
533                 }
534
535         *fromp=from;
536         return(1);
537         }
538
539 #ifndef NO_FP_API
540 int PEM_write(FILE *fp, char *name, char *header, unsigned char *data,
541              long len)
542         {
543         BIO *b;
544         int ret;
545
546         if ((b=BIO_new(BIO_s_file())) == NULL)
547                 {
548                 PEMerr(PEM_F_PEM_WRITE,ERR_R_BUF_LIB);
549                 return(0);
550                 }
551         BIO_set_fp(b,fp,BIO_NOCLOSE);
552         ret=PEM_write_bio(b, name, header, data,len);
553         BIO_free(b);
554         return(ret);
555         }
556 #endif
557
558 int PEM_write_bio(BIO *bp, const char *name, char *header, unsigned char *data,
559              long len)
560         {
561         int nlen,n,i,j,outl;
562         unsigned char *buf;
563         EVP_ENCODE_CTX ctx;
564         int reason=ERR_R_BUF_LIB;
565         
566         EVP_EncodeInit(&ctx);
567         nlen=strlen(name);
568
569         if (    (BIO_write(bp,"-----BEGIN ",11) != 11) ||
570                 (BIO_write(bp,name,nlen) != nlen) ||
571                 (BIO_write(bp,"-----\n",6) != 6))
572                 goto err;
573                 
574         i=strlen(header);
575         if (i > 0)
576                 {
577                 if (    (BIO_write(bp,header,i) != i) ||
578                         (BIO_write(bp,"\n",1) != 1))
579                         goto err;
580                 }
581
582         buf=(unsigned char *)Malloc(PEM_BUFSIZE*8);
583         if (buf == NULL)
584                 {
585                 reason=ERR_R_MALLOC_FAILURE;
586                 goto err;
587                 }
588
589         i=j=0;
590         while (len > 0)
591                 {
592                 n=(int)((len>(PEM_BUFSIZE*5))?(PEM_BUFSIZE*5):len);
593                 EVP_EncodeUpdate(&ctx,buf,&outl,&(data[j]),n);
594                 if ((outl) && (BIO_write(bp,(char *)buf,outl) != outl))
595                         goto err;
596                 i+=outl;
597                 len-=n;
598                 j+=n;
599                 }
600         EVP_EncodeFinal(&ctx,buf,&outl);
601         if ((outl > 0) && (BIO_write(bp,(char *)buf,outl) != outl)) goto err;
602         Free(buf);
603         if (    (BIO_write(bp,"-----END ",9) != 9) ||
604                 (BIO_write(bp,name,nlen) != nlen) ||
605                 (BIO_write(bp,"-----\n",6) != 6))
606                 goto err;
607         return(i+outl);
608 err:
609         PEMerr(PEM_F_PEM_WRITE_BIO,reason);
610         return(0);
611         }
612
613 #ifndef NO_FP_API
614 int PEM_read(FILE *fp, char **name, char **header, unsigned char **data,
615              long *len)
616         {
617         BIO *b;
618         int ret;
619
620         if ((b=BIO_new(BIO_s_file())) == NULL)
621                 {
622                 PEMerr(PEM_F_PEM_READ,ERR_R_BUF_LIB);
623                 return(0);
624                 }
625         BIO_set_fp(b,fp,BIO_NOCLOSE);
626         ret=PEM_read_bio(b, name, header, data,len);
627         BIO_free(b);
628         return(ret);
629         }
630 #endif
631
632 int PEM_read_bio(BIO *bp, char **name, char **header, unsigned char **data,
633              long *len)
634         {
635         EVP_ENCODE_CTX ctx;
636         int end=0,i,k,bl=0,hl=0,nohead=0;
637         char buf[256];
638         BUF_MEM *nameB;
639         BUF_MEM *headerB;
640         BUF_MEM *dataB,*tmpB;
641         
642         nameB=BUF_MEM_new();
643         headerB=BUF_MEM_new();
644         dataB=BUF_MEM_new();
645         if ((nameB == NULL) || (headerB == NULL) || (dataB == NULL))
646                 {
647                 PEMerr(PEM_F_PEM_READ_BIO,ERR_R_MALLOC_FAILURE);
648                 return(0);
649                 }
650
651         buf[254]='\0';
652         for (;;)
653                 {
654                 i=BIO_gets(bp,buf,254);
655
656                 if (i <= 0)
657                         {
658                         PEMerr(PEM_F_PEM_READ_BIO,PEM_R_NO_START_LINE);
659                         goto err;
660                         }
661
662                 while ((i >= 0) && (buf[i] <= ' ')) i--;
663                 buf[++i]='\n'; buf[++i]='\0';
664
665                 if (strncmp(buf,"-----BEGIN ",11) == 0)
666                         {
667                         i=strlen(&(buf[11]));
668
669                         if (strncmp(&(buf[11+i-6]),"-----\n",6) != 0)
670                                 continue;
671                         if (!BUF_MEM_grow(nameB,i+9))
672                                 {
673                                 PEMerr(PEM_F_PEM_READ_BIO,ERR_R_MALLOC_FAILURE);
674                                 goto err;
675                                 }
676                         memcpy(nameB->data,&(buf[11]),i-6);
677                         nameB->data[i-6]='\0';
678                         break;
679                         }
680                 }
681         hl=0;
682         if (!BUF_MEM_grow(headerB,256))
683                 { PEMerr(PEM_F_PEM_READ_BIO,ERR_R_MALLOC_FAILURE); goto err; }
684         headerB->data[0]='\0';
685         for (;;)
686                 {
687                 i=BIO_gets(bp,buf,254);
688                 if (i <= 0) break;
689
690                 while ((i >= 0) && (buf[i] <= ' ')) i--;
691                 buf[++i]='\n'; buf[++i]='\0';
692
693                 if (buf[0] == '\n') break;
694                 if (!BUF_MEM_grow(headerB,hl+i+9))
695                         { PEMerr(PEM_F_PEM_READ_BIO,ERR_R_MALLOC_FAILURE); goto err; }
696                 if (strncmp(buf,"-----END ",9) == 0)
697                         {
698                         nohead=1;
699                         break;
700                         }
701                 memcpy(&(headerB->data[hl]),buf,i);
702                 headerB->data[hl+i]='\0';
703                 hl+=i;
704                 }
705
706         bl=0;
707         if (!BUF_MEM_grow(dataB,1024))
708                 { PEMerr(PEM_F_PEM_READ_BIO,ERR_R_MALLOC_FAILURE); goto err; }
709         dataB->data[0]='\0';
710         if (!nohead)
711                 {
712                 for (;;)
713                         {
714                         i=BIO_gets(bp,buf,254);
715                         if (i <= 0) break;
716
717                         while ((i >= 0) && (buf[i] <= ' ')) i--;
718                         buf[++i]='\n'; buf[++i]='\0';
719
720                         if (i != 65) end=1;
721                         if (strncmp(buf,"-----END ",9) == 0)
722                                 break;
723                         if (i > 65) break;
724                         if (!BUF_MEM_grow(dataB,i+bl+9))
725                                 {
726                                 PEMerr(PEM_F_PEM_READ_BIO,ERR_R_MALLOC_FAILURE);
727                                 goto err;
728                                 }
729                         memcpy(&(dataB->data[bl]),buf,i);
730                         dataB->data[bl+i]='\0';
731                         bl+=i;
732                         if (end)
733                                 {
734                                 buf[0]='\0';
735                                 i=BIO_gets(bp,buf,254);
736                                 if (i <= 0) break;
737
738                                 while ((i >= 0) && (buf[i] <= ' ')) i--;
739                                 buf[++i]='\n'; buf[++i]='\0';
740
741                                 break;
742                                 }
743                         }
744                 }
745         else
746                 {
747                 tmpB=headerB;
748                 headerB=dataB;
749                 dataB=tmpB;
750                 bl=hl;
751                 }
752         i=strlen(nameB->data);
753         if (    (strncmp(buf,"-----END ",9) != 0) ||
754                 (strncmp(nameB->data,&(buf[9]),i) != 0) ||
755                 (strncmp(&(buf[9+i]),"-----\n",6) != 0))
756                 {
757                 PEMerr(PEM_F_PEM_READ_BIO,PEM_R_BAD_END_LINE);
758                 goto err;
759                 }
760
761         EVP_DecodeInit(&ctx);
762         i=EVP_DecodeUpdate(&ctx,
763                 (unsigned char *)dataB->data,&bl,
764                 (unsigned char *)dataB->data,bl);
765         if (i < 0)
766                 {
767                 PEMerr(PEM_F_PEM_READ_BIO,PEM_R_BAD_BASE64_DECODE);
768                 goto err;
769                 }
770         i=EVP_DecodeFinal(&ctx,(unsigned char *)&(dataB->data[bl]),&k);
771         if (i < 0)
772                 {
773                 PEMerr(PEM_F_PEM_READ_BIO,PEM_R_BAD_BASE64_DECODE);
774                 goto err;
775                 }
776         bl+=k;
777
778         if (bl == 0) goto err;
779         *name=nameB->data;
780         *header=headerB->data;
781         *data=(unsigned char *)dataB->data;
782         *len=bl;
783         Free(nameB);
784         Free(headerB);
785         Free(dataB);
786         return(1);
787 err:
788         BUF_MEM_free(nameB);
789         BUF_MEM_free(headerB);
790         BUF_MEM_free(dataB);
791         return(0);
792         }
793
794 /* These functions write a private key in PKCS#8 format: it is a "drop in"
795  * replacement for PEM_write_bio_PrivateKey() and friends. As usual if 'enc'
796  * is NULL then it uses the unencrypted private key form. The 'nid' versions
797  * uses PKCS#5 v1.5 PBE algorithms whereas the others use PKCS#5 v2.0.
798  */
799
800 int PEM_write_bio_PKCS8PrivateKey_nid(BIO *bp, EVP_PKEY *x, int nid,
801                                   char *kstr, int klen,
802                                   pem_password_cb *cb, void *u)
803 {
804         return do_pk8pkey(bp, x, 0, nid, NULL, kstr, klen, cb, u);
805 }
806
807 int PEM_write_bio_PKCS8PrivateKey(BIO *bp, EVP_PKEY *x, const EVP_CIPHER *enc,
808                                   char *kstr, int klen,
809                                   pem_password_cb *cb, void *u)
810 {
811         return do_pk8pkey(bp, x, 0, -1, enc, kstr, klen, cb, u);
812 }
813
814 int i2d_PKCS8PrivateKey_bio(BIO *bp, EVP_PKEY *x, const EVP_CIPHER *enc,
815                                   char *kstr, int klen,
816                                   pem_password_cb *cb, void *u)
817 {
818         return do_pk8pkey(bp, x, 1, -1, enc, kstr, klen, cb, u);
819 }
820
821 int i2d_PKCS8PrivateKey_nid_bio(BIO *bp, EVP_PKEY *x, int nid,
822                                   char *kstr, int klen,
823                                   pem_password_cb *cb, void *u)
824 {
825         return do_pk8pkey(bp, x, 1, nid, NULL, kstr, klen, cb, u);
826 }
827
828 static int do_pk8pkey(BIO *bp, EVP_PKEY *x, int isder, int nid, const EVP_CIPHER *enc,
829                                   char *kstr, int klen,
830                                   pem_password_cb *cb, void *u)
831 {
832         X509_SIG *p8;
833         PKCS8_PRIV_KEY_INFO *p8inf;
834         char buf[PEM_BUFSIZE];
835         int ret;
836         if(!(p8inf = EVP_PKEY2PKCS8(x))) {
837                 PEMerr(PEM_F_PEM_WRITE_BIO_PKCS8PRIVATEKEY,
838                                         PEM_R_ERROR_CONVERTING_PRIVATE_KEY);
839                 return 0;
840         }
841         if(enc || (nid != -1)) {
842                 if(!kstr) {
843                         if(!cb) klen = def_callback(buf, PEM_BUFSIZE, 1, u);
844                         else klen = cb(buf, PEM_BUFSIZE, 1, u);
845                         if(klen <= 0) {
846                                 PEMerr(PEM_F_PEM_WRITE_BIO_PKCS8PRIVATEKEY,
847                                                                 PEM_R_READ_KEY);
848                                 PKCS8_PRIV_KEY_INFO_free(p8inf);
849                                 return 0;
850                         }
851                                 
852                         kstr = buf;
853                 }
854                 p8 = PKCS8_encrypt(nid, enc, kstr, klen, NULL, 0, 0, p8inf);
855                 if(kstr == buf) memset(buf, 0, klen);
856                 PKCS8_PRIV_KEY_INFO_free(p8inf);
857                 if(isder) ret = i2d_PKCS8_bio(bp, p8);
858                 else ret = PEM_write_bio_PKCS8(bp, p8);
859                 X509_SIG_free(p8);
860                 return ret;
861         } else {
862                 if(isder) ret = i2d_PKCS8_PRIV_KEY_INFO_bio(bp, p8inf);
863                 else ret = PEM_write_bio_PKCS8_PRIV_KEY_INFO(bp, p8inf);
864                 PKCS8_PRIV_KEY_INFO_free(p8inf);
865                 return ret;
866         }
867 }
868
869 /* Finally the DER version to read PKCS#8 encrypted private keys. It has to be
870  * here to access the default callback.
871  */
872
873 EVP_PKEY *d2i_PKCS8PrivateKey_bio(BIO *bp, EVP_PKEY **x, pem_password_cb *cb, void *u)
874 {
875         PKCS8_PRIV_KEY_INFO *p8inf = NULL;
876         X509_SIG *p8 = NULL;
877         int klen;
878         EVP_PKEY *ret;
879         char psbuf[PEM_BUFSIZE];
880         p8 = d2i_PKCS8_bio(bp, NULL);
881         if(!p8) return NULL;
882         if (cb) klen=cb(psbuf,PEM_BUFSIZE,0,u);
883         else klen=def_callback(psbuf,PEM_BUFSIZE,0,u);
884         if (klen <= 0) {
885                 PEMerr(PEM_F_D2I_PKCS8PRIVATEKEY_BIO, PEM_R_BAD_PASSWORD_READ);
886                 X509_SIG_free(p8);
887                 return NULL;    
888         }
889         p8inf = M_PKCS8_decrypt(p8, psbuf, klen);
890         X509_SIG_free(p8);
891         if(!p8inf) return NULL;
892         ret = EVP_PKCS82PKEY(p8inf);
893         PKCS8_PRIV_KEY_INFO_free(p8inf);
894         if(!ret) return NULL;
895         if(x) {
896                 if(*x) EVP_PKEY_free(*x);
897                 *x = ret;
898         }
899         return ret;
900 }
901
902 #ifndef NO_FP_API
903
904 int i2d_PKCS8PrivateKey_fp(FILE *fp, EVP_PKEY *x, const EVP_CIPHER *enc,
905                                   char *kstr, int klen,
906                                   pem_password_cb *cb, void *u)
907 {
908         return do_pk8pkey_fp(fp, x, 1, -1, enc, kstr, klen, cb, u);
909 }
910
911 int i2d_PKCS8PrivateKey_nid_fp(FILE *fp, EVP_PKEY *x, int nid,
912                                   char *kstr, int klen,
913                                   pem_password_cb *cb, void *u)
914 {
915         return do_pk8pkey_fp(fp, x, 1, nid, NULL, kstr, klen, cb, u);
916 }
917
918 int PEM_write_PKCS8PrivateKey_nid(FILE *fp, EVP_PKEY *x, int nid,
919                                   char *kstr, int klen,
920                                   pem_password_cb *cb, void *u)
921 {
922         return do_pk8pkey_fp(fp, x, 0, nid, NULL, kstr, klen, cb, u);
923 }
924
925 int PEM_write_PKCS8PrivateKey(FILE *fp, EVP_PKEY *x, const EVP_CIPHER *enc,
926                               char *kstr, int klen, pem_password_cb *cb, void *u)
927 {
928         return do_pk8pkey_fp(fp, x, 0, -1, enc, kstr, klen, cb, u);
929 }
930
931 static int do_pk8pkey_fp(FILE *fp, EVP_PKEY *x, int isder, int nid, const EVP_CIPHER *enc,
932                                   char *kstr, int klen,
933                                   pem_password_cb *cb, void *u)
934 {
935         BIO *bp;
936         int ret;
937         if(!(bp = BIO_new_fp(fp, BIO_NOCLOSE))) {
938                 PEMerr(PEM_F_PEM_F_DO_PK8KEY_FP,ERR_R_BUF_LIB);
939                 return(0);
940         }
941         ret = do_pk8pkey(bp, x, isder, nid, enc, kstr, klen, cb, u);
942         BIO_free(bp);
943         return ret;
944 }
945
946 EVP_PKEY *d2i_PKCS8PrivateKey_fp(FILE *fp, EVP_PKEY **x, pem_password_cb *cb, void *u)
947 {
948         BIO *bp;
949         EVP_PKEY *ret;
950         if(!(bp = BIO_new_fp(fp, BIO_NOCLOSE))) {
951                 PEMerr(PEM_F_D2I_PKCS8PRIVATEKEY_FP,ERR_R_BUF_LIB);
952                 return NULL;
953         }
954         ret = d2i_PKCS8PrivateKey_bio(bp, x, cb, u);
955         BIO_free(bp);
956         return ret;
957 }
958
959 #endif