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