Support the EBCDIC character set and BS2000/OSD-POSIX (work in progress).
[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 #ifndef NO_DES
68 #include <openssl/des.h>
69 #endif
70
71 const char *PEM_version="PEM" OPENSSL_VERSION_PTEXT;
72
73 #define MIN_LENGTH      4
74
75 static int def_callback(char *buf, int num, int w);
76 static int load_iv(unsigned char **fromp,unsigned char *to, int num);
77 static int def_callback(char *buf, int num, int w)
78         {
79 #ifdef NO_FP_API
80         /* We should not ever call the default callback routine from
81          * windows. */
82         PEMerr(PEM_F_DEF_CALLBACK,ERR_R_SHOULD_NOT_HAVE_BEEN_CALLED);
83         return(-1);
84 #else
85         int i,j;
86         const char *prompt;
87
88         prompt=EVP_get_pw_prompt();
89         if (prompt == NULL)
90                 prompt="Enter PEM pass phrase:";
91
92         for (;;)
93                 {
94                 i=EVP_read_pw_string(buf,num,prompt,w);
95                 if (i != 0)
96                         {
97                         PEMerr(PEM_F_DEF_CALLBACK,PEM_R_PROBLEMS_GETTING_PASSWORD);
98                         memset(buf,0,(unsigned int)num);
99                         return(-1);
100                         }
101                 j=strlen(buf);
102                 if (j < MIN_LENGTH)
103                         {
104                         fprintf(stderr,"phrase is too short, needs to be at least %d chars\n",MIN_LENGTH);
105                         }
106                 else
107                         break;
108                 }
109         return(j);
110 #endif
111         }
112
113 void PEM_proc_type(char *buf, int type)
114         {
115         const char *str;
116
117         if (type == PEM_TYPE_ENCRYPTED)
118                 str="ENCRYPTED";
119         else if (type == PEM_TYPE_MIC_CLEAR)
120                 str="MIC-CLEAR";
121         else if (type == PEM_TYPE_MIC_ONLY)
122                 str="MIC-ONLY";
123         else
124                 str="BAD-TYPE";
125                 
126         strcat(buf,"Proc-Type: 4,");
127         strcat(buf,str);
128         strcat(buf,"\n");
129         }
130
131 void PEM_dek_info(char *buf, const char *type, int len, char *str)
132         {
133         static unsigned char map[17]="0123456789ABCDEF";
134         long i;
135         int j;
136
137         strcat(buf,"DEK-Info: ");
138         strcat(buf,type);
139         strcat(buf,",");
140         j=strlen(buf);
141         for (i=0; i<len; i++)
142                 {
143                 buf[j+i*2]  =map[(str[i]>>4)&0x0f];
144                 buf[j+i*2+1]=map[(str[i]   )&0x0f];
145                 }
146         buf[j+i*2]='\n';
147         buf[j+i*2+1]='\0';
148         }
149
150 #ifndef NO_FP_API
151 char *PEM_ASN1_read(char *(*d2i)(), const char *name, FILE *fp, char **x,
152              pem_password_cb *cb)
153         {
154         BIO *b;
155         char *ret;
156
157         if ((b=BIO_new(BIO_s_file())) == NULL)
158                 {
159                 PEMerr(PEM_F_PEM_ASN1_READ,ERR_R_BUF_LIB);
160                 return(0);
161                 }
162         BIO_set_fp(b,fp,BIO_NOCLOSE);
163         ret=PEM_ASN1_read_bio(d2i,name,b,x,cb);
164         BIO_free(b);
165         return(ret);
166         }
167 #endif
168
169 char *PEM_ASN1_read_bio(char *(*d2i)(), const char *name, BIO *bp, char **x,
170              pem_password_cb *cb)
171         {
172         EVP_CIPHER_INFO cipher;
173         char *nm=NULL,*header=NULL;
174         unsigned char *p=NULL,*data=NULL;
175         long len;
176         char *ret=NULL;
177
178         for (;;)
179                 {
180                 if (!PEM_read_bio(bp,&nm,&header,&data,&len)) return(NULL);
181                 if (    (strcmp(nm,name) == 0) ||
182                         ((strcmp(nm,PEM_STRING_RSA) == 0) &&
183                          (strcmp(name,PEM_STRING_EVP_PKEY) == 0)) ||
184                         ((strcmp(nm,PEM_STRING_DSA) == 0) &&
185                          (strcmp(name,PEM_STRING_EVP_PKEY) == 0)) ||
186                         ((strcmp(nm,PEM_STRING_X509_OLD) == 0) &&
187                          (strcmp(name,PEM_STRING_X509) == 0)) ||
188                         ((strcmp(nm,PEM_STRING_X509_REQ_OLD) == 0) &&
189                          (strcmp(name,PEM_STRING_X509_REQ) == 0))
190                         )
191                         break;
192                 Free(nm);
193                 Free(header);
194                 Free(data);
195                 }
196         if (!PEM_get_EVP_CIPHER_INFO(header,&cipher)) goto err;
197         if (!PEM_do_header(&cipher,data,&len,cb)) goto err;
198         p=data;
199         if (strcmp(name,PEM_STRING_EVP_PKEY) == 0)
200                 {
201                 if (strcmp(nm,PEM_STRING_RSA) == 0)
202                         ret=d2i(EVP_PKEY_RSA,x,&p,len);
203                 else if (strcmp(nm,PEM_STRING_DSA) == 0)
204                         ret=d2i(EVP_PKEY_DSA,x,&p,len);
205                 }
206         else    
207                 ret=d2i(x,&p,len);
208         if (ret == NULL)
209                 PEMerr(PEM_F_PEM_ASN1_READ_BIO,ERR_R_ASN1_LIB);
210 err:
211         Free(nm);
212         Free(header);
213         Free(data);
214         return(ret);
215         }
216
217 #ifndef NO_FP_API
218 int PEM_ASN1_write(int (*i2d)(), const char *name, FILE *fp, char *x,
219              const EVP_CIPHER *enc, unsigned char *kstr, int klen,
220              pem_password_cb *callback)
221         {
222         BIO *b;
223         int ret;
224
225         if ((b=BIO_new(BIO_s_file())) == NULL)
226                 {
227                 PEMerr(PEM_F_PEM_ASN1_WRITE,ERR_R_BUF_LIB);
228                 return(0);
229                 }
230         BIO_set_fp(b,fp,BIO_NOCLOSE);
231         ret=PEM_ASN1_write_bio(i2d,name,b,x,enc,kstr,klen,callback);
232         BIO_free(b);
233         return(ret);
234         }
235 #endif
236
237 int PEM_ASN1_write_bio(int (*i2d)(), const char *name, BIO *bp, char *x,
238              const EVP_CIPHER *enc, unsigned char *kstr, int klen,
239              pem_password_cb *callback)
240         {
241         EVP_CIPHER_CTX ctx;
242         int dsize=0,i,j,ret=0;
243         unsigned char *p,*data=NULL;
244         const char *objstr=NULL;
245 #define PEM_BUFSIZE     1024
246         char buf[PEM_BUFSIZE];
247         unsigned char key[EVP_MAX_KEY_LENGTH];
248         unsigned char iv[EVP_MAX_IV_LENGTH];
249         
250         if (enc != NULL)
251                 {
252                 objstr=OBJ_nid2sn(EVP_CIPHER_nid(enc));
253                 if (objstr == NULL)
254                         {
255                         PEMerr(PEM_F_PEM_ASN1_WRITE_BIO,PEM_R_UNSUPPORTED_CIPHER);
256                         goto err;
257                         }
258                 }
259
260         if ((dsize=i2d(x,NULL)) < 0)
261                 {
262                 PEMerr(PEM_F_PEM_ASN1_WRITE_BIO,ERR_R_MALLOC_FAILURE);
263                 dsize=0;
264                 goto err;
265                 }
266         /* dzise + 8 bytes are needed */
267         data=(unsigned char *)Malloc((unsigned int)dsize+20);
268         if (data == NULL)
269                 {
270                 PEMerr(PEM_F_PEM_ASN1_WRITE_BIO,ERR_R_MALLOC_FAILURE);
271                 goto err;
272                 }
273         p=data;
274         i=i2d(x,&p);
275
276         if (enc != NULL)
277                 {
278                 if (kstr == NULL)
279                         {
280                         if (callback == NULL)
281                                 klen=def_callback(buf,PEM_BUFSIZE,1);
282                         else
283                                 klen=(*callback)(buf,PEM_BUFSIZE,1);
284                         if (klen <= 0)
285                                 {
286                                 PEMerr(PEM_F_PEM_ASN1_WRITE_BIO,PEM_R_READ_KEY);
287                                 goto err;
288                                 }
289 #ifdef CHARSET_EBCDIC
290                         /* Convert the pass phrase from EBCDIC */
291                         ebcdic2ascii(buf, buf, klen);
292 #endif
293                         kstr=(unsigned char *)buf;
294                         }
295                 RAND_seed(data,i);/* put in the RSA key. */
296                 RAND_bytes(iv,8);       /* Generate a salt */
297                 /* The 'iv' is used as the iv and as a salt.  It is
298                  * NOT taken from the BytesToKey function */
299                 EVP_BytesToKey(enc,EVP_md5(),iv,kstr,klen,1,key,NULL);
300
301                 if (kstr == (unsigned char *)buf) memset(buf,0,PEM_BUFSIZE);
302
303                 buf[0]='\0';
304                 PEM_proc_type(buf,PEM_TYPE_ENCRYPTED);
305                 PEM_dek_info(buf,objstr,8,(char *)iv);
306                 /* k=strlen(buf); */
307         
308                 EVP_EncryptInit(&ctx,enc,key,iv);
309                 EVP_EncryptUpdate(&ctx,data,&j,data,i);
310                 EVP_EncryptFinal(&ctx,&(data[j]),&i);
311                 i+=j;
312                 ret=1;
313                 }
314         else
315                 {
316                 ret=1;
317                 buf[0]='\0';
318                 }
319         i=PEM_write_bio(bp,name,buf,data,i);
320         if (i <= 0) ret=0;
321 err:
322         memset(key,0,sizeof(key));
323         memset(iv,0,sizeof(iv));
324         memset((char *)&ctx,0,sizeof(ctx));
325         memset(buf,0,PEM_BUFSIZE);
326         memset(data,0,(unsigned int)dsize);
327         Free(data);
328         return(ret);
329         }
330
331 int PEM_do_header(EVP_CIPHER_INFO *cipher, unsigned char *data, long *plen,
332              pem_password_cb *callback)
333         {
334         int i,j,o,klen;
335         long len;
336         EVP_CIPHER_CTX ctx;
337         unsigned char key[EVP_MAX_KEY_LENGTH];
338         char buf[PEM_BUFSIZE];
339
340         len= *plen;
341
342         if (cipher->cipher == NULL) return(1);
343         if (callback == NULL)
344                 klen=def_callback(buf,PEM_BUFSIZE,0);
345         else
346                 klen=callback(buf,PEM_BUFSIZE,0);
347         if (klen <= 0)
348                 {
349                 PEMerr(PEM_F_PEM_DO_HEADER,PEM_R_BAD_PASSWORD_READ);
350                 return(0);
351                 }
352 #ifdef CHARSET_EBCDIC
353         /* Convert the pass phrase from EBCDIC */
354         ebcdic2ascii(buf, buf, klen);
355 #endif
356
357         EVP_BytesToKey(cipher->cipher,EVP_md5(),&(cipher->iv[0]),
358                 (unsigned char *)buf,klen,1,key,NULL);
359
360         j=(int)len;
361         EVP_DecryptInit(&ctx,cipher->cipher,key,&(cipher->iv[0]));
362         EVP_DecryptUpdate(&ctx,data,&i,data,j);
363         o=EVP_DecryptFinal(&ctx,&(data[i]),&j);
364         EVP_CIPHER_CTX_cleanup(&ctx);
365         memset((char *)buf,0,sizeof(buf));
366         memset((char *)key,0,sizeof(key));
367         j+=i;
368         if (!o)
369                 {
370                 PEMerr(PEM_F_PEM_DO_HEADER,PEM_R_BAD_DECRYPT);
371                 return(0);
372                 }
373         *plen=j;
374         return(1);
375         }
376
377 int PEM_get_EVP_CIPHER_INFO(char *header, EVP_CIPHER_INFO *cipher)
378         {
379         int o;
380         const EVP_CIPHER *enc=NULL;
381         char *p,c;
382
383         cipher->cipher=NULL;
384         if ((header == NULL) || (*header == '\0') || (*header == '\n'))
385                 return(1);
386         if (strncmp(header,"Proc-Type: ",11) != 0)
387                 { PEMerr(PEM_F_PEM_GET_EVP_CIPHER_INFO,PEM_R_NOT_PROC_TYPE); return(0); }
388         header+=11;
389         if (*header != '4') return(0); header++;
390         if (*header != ',') return(0); header++;
391         if (strncmp(header,"ENCRYPTED",9) != 0)
392                 { PEMerr(PEM_F_PEM_GET_EVP_CIPHER_INFO,PEM_R_NOT_ENCRYPTED); return(0); }
393         for (; (*header != '\n') && (*header != '\0'); header++)
394                 ;
395         if (*header == '\0')
396                 { PEMerr(PEM_F_PEM_GET_EVP_CIPHER_INFO,PEM_R_SHORT_HEADER); return(0); }
397         header++;
398         if (strncmp(header,"DEK-Info: ",10) != 0)
399                 { PEMerr(PEM_F_PEM_GET_EVP_CIPHER_INFO,PEM_R_NOT_DEK_INFO); return(0); }
400         header+=10;
401
402         p=header;
403         for (;;)
404                 {
405                 c= *header;
406 #ifndef CHARSET_EBCDIC
407                 if (!(  ((c >= 'A') && (c <= 'Z')) || (c == '-') ||
408                         ((c >= '0') && (c <= '9'))))
409                         break;
410 #else
411                 if (!(  isupper(c) || (c == '-') ||
412                         isdigit(c)))
413                         break;
414 #endif
415                 header++;
416                 }
417         *header='\0';
418         o=OBJ_sn2nid(p);
419         cipher->cipher=enc=EVP_get_cipherbyname(p);
420         *header=c;
421         header++;
422
423         if (enc == NULL)
424                 {
425                 PEMerr(PEM_F_PEM_GET_EVP_CIPHER_INFO,PEM_R_UNSUPPORTED_ENCRYPTION);
426                 return(0);
427                 }
428         if (!load_iv((unsigned char **)&header,&(cipher->iv[0]),8)) return(0);
429
430         return(1);
431         }
432
433 static int load_iv(unsigned char **fromp, unsigned char *to, int num)
434         {
435         int v,i;
436         unsigned char *from;
437
438         from= *fromp;
439         for (i=0; i<num; i++) to[i]=0;
440         num*=2;
441         for (i=0; i<num; i++)
442                 {
443                 if ((*from >= '0') && (*from <= '9'))
444                         v= *from-'0';
445                 else if ((*from >= 'A') && (*from <= 'F'))
446                         v= *from-'A'+10;
447                 else if ((*from >= 'a') && (*from <= 'f'))
448                         v= *from-'a'+10;
449                 else
450                         {
451                         PEMerr(PEM_F_LOAD_IV,PEM_R_BAD_IV_CHARS);
452                         return(0);
453                         }
454                 from++;
455                 to[i/2]|=v<<(long)((!(i&1))*4);
456                 }
457
458         *fromp=from;
459         return(1);
460         }
461
462 #ifndef NO_FP_API
463 int PEM_write(FILE *fp, char *name, char *header, unsigned char *data,
464              long len)
465         {
466         BIO *b;
467         int ret;
468
469         if ((b=BIO_new(BIO_s_file())) == NULL)
470                 {
471                 PEMerr(PEM_F_PEM_WRITE,ERR_R_BUF_LIB);
472                 return(0);
473                 }
474         BIO_set_fp(b,fp,BIO_NOCLOSE);
475         ret=PEM_write_bio(b, name, header, data,len);
476         BIO_free(b);
477         return(ret);
478         }
479 #endif
480
481 int PEM_write_bio(BIO *bp, const char *name, char *header, unsigned char *data,
482              long len)
483         {
484         int nlen,n,i,j,outl;
485         unsigned char *buf;
486         EVP_ENCODE_CTX ctx;
487         int reason=ERR_R_BUF_LIB;
488         
489         EVP_EncodeInit(&ctx);
490         nlen=strlen(name);
491
492         if (    (BIO_write(bp,"-----BEGIN ",11) != 11) ||
493                 (BIO_write(bp,name,nlen) != nlen) ||
494                 (BIO_write(bp,"-----\n",6) != 6))
495                 goto err;
496                 
497         i=strlen(header);
498         if (i > 0)
499                 {
500                 if (    (BIO_write(bp,header,i) != i) ||
501                         (BIO_write(bp,"\n",1) != 1))
502                         goto err;
503                 }
504
505         buf=(unsigned char *)Malloc(PEM_BUFSIZE*8);
506         if (buf == NULL)
507                 {
508                 reason=ERR_R_MALLOC_FAILURE;
509                 goto err;
510                 }
511
512         i=j=0;
513         while (len > 0)
514                 {
515                 n=(int)((len>(PEM_BUFSIZE*5))?(PEM_BUFSIZE*5):len);
516                 EVP_EncodeUpdate(&ctx,buf,&outl,&(data[j]),n);
517                 if ((outl) && (BIO_write(bp,(char *)buf,outl) != outl))
518                         goto err;
519                 i+=outl;
520                 len-=n;
521                 j+=n;
522                 }
523         EVP_EncodeFinal(&ctx,buf,&outl);
524         if ((outl > 0) && (BIO_write(bp,(char *)buf,outl) != outl)) goto err;
525         Free(buf);
526         if (    (BIO_write(bp,"-----END ",9) != 9) ||
527                 (BIO_write(bp,name,nlen) != nlen) ||
528                 (BIO_write(bp,"-----\n",6) != 6))
529                 goto err;
530         return(i+outl);
531 err:
532         PEMerr(PEM_F_PEM_WRITE_BIO,reason);
533         return(0);
534         }
535
536 #ifndef NO_FP_API
537 int PEM_read(FILE *fp, char **name, char **header, unsigned char **data,
538              long *len)
539         {
540         BIO *b;
541         int ret;
542
543         if ((b=BIO_new(BIO_s_file())) == NULL)
544                 {
545                 PEMerr(PEM_F_PEM_READ,ERR_R_BUF_LIB);
546                 return(0);
547                 }
548         BIO_set_fp(b,fp,BIO_NOCLOSE);
549         ret=PEM_read_bio(b, name, header, data,len);
550         BIO_free(b);
551         return(ret);
552         }
553 #endif
554
555 int PEM_read_bio(BIO *bp, char **name, char **header, unsigned char **data,
556              long *len)
557         {
558         EVP_ENCODE_CTX ctx;
559         int end=0,i,k,bl=0,hl=0,nohead=0;
560         char buf[256];
561         BUF_MEM *nameB;
562         BUF_MEM *headerB;
563         BUF_MEM *dataB,*tmpB;
564         
565         nameB=BUF_MEM_new();
566         headerB=BUF_MEM_new();
567         dataB=BUF_MEM_new();
568         if ((nameB == NULL) || (headerB == NULL) || (dataB == NULL))
569                 {
570                 PEMerr(PEM_F_PEM_READ_BIO,ERR_R_MALLOC_FAILURE);
571                 return(0);
572                 }
573
574         buf[254]='\0';
575         for (;;)
576                 {
577                 i=BIO_gets(bp,buf,254);
578
579                 if (i <= 0)
580                         {
581                         PEMerr(PEM_F_PEM_READ_BIO,PEM_R_NO_START_LINE);
582                         goto err;
583                         }
584
585                 while ((i >= 0) && (buf[i] <= ' ')) i--;
586                 buf[++i]='\n'; buf[++i]='\0';
587
588                 if (strncmp(buf,"-----BEGIN ",11) == 0)
589                         {
590                         i=strlen(&(buf[11]));
591
592                         if (strncmp(&(buf[11+i-6]),"-----\n",6) != 0)
593                                 continue;
594                         if (!BUF_MEM_grow(nameB,i+9))
595                                 {
596                                 PEMerr(PEM_F_PEM_READ_BIO,ERR_R_MALLOC_FAILURE);
597                                 goto err;
598                                 }
599                         memcpy(nameB->data,&(buf[11]),i-6);
600                         nameB->data[i-6]='\0';
601                         break;
602                         }
603                 }
604         hl=0;
605         if (!BUF_MEM_grow(headerB,256))
606                 { PEMerr(PEM_F_PEM_READ_BIO,ERR_R_MALLOC_FAILURE); goto err; }
607         headerB->data[0]='\0';
608         for (;;)
609                 {
610                 i=BIO_gets(bp,buf,254);
611                 if (i <= 0) break;
612
613                 while ((i >= 0) && (buf[i] <= ' ')) i--;
614                 buf[++i]='\n'; buf[++i]='\0';
615
616                 if (buf[0] == '\n') break;
617                 if (!BUF_MEM_grow(headerB,hl+i+9))
618                         { PEMerr(PEM_F_PEM_READ_BIO,ERR_R_MALLOC_FAILURE); goto err; }
619                 if (strncmp(buf,"-----END ",9) == 0)
620                         {
621                         nohead=1;
622                         break;
623                         }
624                 memcpy(&(headerB->data[hl]),buf,i);
625                 headerB->data[hl+i]='\0';
626                 hl+=i;
627                 }
628
629         bl=0;
630         if (!BUF_MEM_grow(dataB,1024))
631                 { PEMerr(PEM_F_PEM_READ_BIO,ERR_R_MALLOC_FAILURE); goto err; }
632         dataB->data[0]='\0';
633         if (!nohead)
634                 {
635                 for (;;)
636                         {
637                         i=BIO_gets(bp,buf,254);
638                         if (i <= 0) break;
639
640                         while ((i >= 0) && (buf[i] <= ' ')) i--;
641                         buf[++i]='\n'; buf[++i]='\0';
642
643                         if (i != 65) end=1;
644                         if (strncmp(buf,"-----END ",9) == 0)
645                                 break;
646                         if (i > 65) break;
647                         if (!BUF_MEM_grow(dataB,i+bl+9))
648                                 {
649                                 PEMerr(PEM_F_PEM_READ_BIO,ERR_R_MALLOC_FAILURE);
650                                 goto err;
651                                 }
652                         memcpy(&(dataB->data[bl]),buf,i);
653                         dataB->data[bl+i]='\0';
654                         bl+=i;
655                         if (end)
656                                 {
657                                 buf[0]='\0';
658                                 i=BIO_gets(bp,buf,254);
659                                 if (i <= 0) break;
660
661                                 while ((i >= 0) && (buf[i] <= ' ')) i--;
662                                 buf[++i]='\n'; buf[++i]='\0';
663
664                                 break;
665                                 }
666                         }
667                 }
668         else
669                 {
670                 tmpB=headerB;
671                 headerB=dataB;
672                 dataB=tmpB;
673                 bl=hl;
674                 }
675         i=strlen(nameB->data);
676         if (    (strncmp(buf,"-----END ",9) != 0) ||
677                 (strncmp(nameB->data,&(buf[9]),i) != 0) ||
678                 (strncmp(&(buf[9+i]),"-----\n",6) != 0))
679                 {
680                 PEMerr(PEM_F_PEM_READ_BIO,PEM_R_BAD_END_LINE);
681                 goto err;
682                 }
683
684         EVP_DecodeInit(&ctx);
685         i=EVP_DecodeUpdate(&ctx,
686                 (unsigned char *)dataB->data,&bl,
687                 (unsigned char *)dataB->data,bl);
688         if (i < 0)
689                 {
690                 PEMerr(PEM_F_PEM_READ_BIO,PEM_R_BAD_BASE64_DECODE);
691                 goto err;
692                 }
693         i=EVP_DecodeFinal(&ctx,(unsigned char *)&(dataB->data[bl]),&k);
694         if (i < 0)
695                 {
696                 PEMerr(PEM_F_PEM_READ_BIO,PEM_R_BAD_BASE64_DECODE);
697                 goto err;
698                 }
699         bl+=k;
700
701         if (bl == 0) goto err;
702         *name=nameB->data;
703         *header=headerB->data;
704         *data=(unsigned char *)dataB->data;
705         *len=bl;
706         Free(nameB);
707         Free(headerB);
708         Free(dataB);
709         return(1);
710 err:
711         BUF_MEM_free(nameB);
712         BUF_MEM_free(headerB);
713         BUF_MEM_free(dataB);
714         return(0);
715         }