gcm128.c: API modification and readability improvements,
[openssl.git] / apps / enc.c
1 /* apps/enc.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 <stdlib.h>
61 #include <string.h>
62 #include "apps.h"
63 #include <openssl/bio.h>
64 #include <openssl/err.h>
65 #include <openssl/evp.h>
66 #include <openssl/objects.h>
67 #include <openssl/x509.h>
68 #include <openssl/rand.h>
69 #include <openssl/pem.h>
70 #include <openssl/comp.h>
71 #include <ctype.h>
72
73 int set_hex(char *in,unsigned char *out,int size);
74 #undef SIZE
75 #undef BSIZE
76 #undef PROG
77
78 #define SIZE    (512)
79 #define BSIZE   (8*1024)
80 #define PROG    enc_main
81
82 static void show_ciphers(const OBJ_NAME *name,void *bio_)
83         {
84         BIO *bio=bio_;
85         static int n;
86
87         if(!islower((unsigned char)*name->name))
88                 return;
89
90         BIO_printf(bio,"-%-25s",name->name);
91         if(++n == 3)
92                 {
93                 BIO_printf(bio,"\n");
94                 n=0;
95                 }
96         else
97                 BIO_printf(bio," ");
98         }
99
100 int MAIN(int, char **);
101
102 int MAIN(int argc, char **argv)
103         {
104         static const char magic[]="Salted__";
105         char mbuf[sizeof magic-1];
106         char *strbuf=NULL;
107         unsigned char *buff=NULL,*bufsize=NULL;
108         int bsize=BSIZE,verbose=0;
109         int ret=1,inl;
110         int nopad = 0;
111         unsigned char key[EVP_MAX_KEY_LENGTH],iv[EVP_MAX_IV_LENGTH];
112         unsigned char salt[PKCS5_SALT_LEN];
113         char *str=NULL, *passarg = NULL, *pass = NULL;
114         char *hkey=NULL,*hiv=NULL,*hsalt = NULL;
115         char *md=NULL;
116         int enc=1,printkey=0,i,base64=0;
117 #ifdef ZLIB
118         int do_zlib=0;
119         BIO *bzl = NULL;
120 #endif
121         int debug=0,olb64=0,nosalt=0;
122         const EVP_CIPHER *cipher=NULL,*c;
123         EVP_CIPHER_CTX *ctx = NULL;
124         char *inf=NULL,*outf=NULL;
125         BIO *in=NULL,*out=NULL,*b64=NULL,*benc=NULL,*rbio=NULL,*wbio=NULL;
126 #define PROG_NAME_SIZE  39
127         char pname[PROG_NAME_SIZE+1];
128 #ifndef OPENSSL_NO_ENGINE
129         char *engine = NULL;
130 #endif
131         const EVP_MD *dgst=NULL;
132
133         apps_startup();
134
135         if (bio_err == NULL)
136                 if ((bio_err=BIO_new(BIO_s_file())) != NULL)
137                         BIO_set_fp(bio_err,stderr,BIO_NOCLOSE|BIO_FP_TEXT);
138
139         if (!load_config(bio_err, NULL))
140                 goto end;
141
142         /* first check the program name */
143         program_name(argv[0],pname,sizeof pname);
144         if (strcmp(pname,"base64") == 0)
145                 base64=1;
146 #ifdef ZLIB
147         if (strcmp(pname,"zlib") == 0)
148                 do_zlib=1;
149 #endif
150
151         cipher=EVP_get_cipherbyname(pname);
152 #ifdef ZLIB
153         if (!do_zlib && !base64 && (cipher == NULL)
154                                 && (strcmp(pname,"enc") != 0))
155 #else
156         if (!base64 && (cipher == NULL) && (strcmp(pname,"enc") != 0))
157 #endif
158                 {
159                 BIO_printf(bio_err,"%s is an unknown cipher\n",pname);
160                 goto bad;
161                 }
162
163         argc--;
164         argv++;
165         while (argc >= 1)
166                 {
167                 if      (strcmp(*argv,"-e") == 0)
168                         enc=1;
169                 else if (strcmp(*argv,"-in") == 0)
170                         {
171                         if (--argc < 1) goto bad;
172                         inf= *(++argv);
173                         }
174                 else if (strcmp(*argv,"-out") == 0)
175                         {
176                         if (--argc < 1) goto bad;
177                         outf= *(++argv);
178                         }
179                 else if (strcmp(*argv,"-pass") == 0)
180                         {
181                         if (--argc < 1) goto bad;
182                         passarg= *(++argv);
183                         }
184 #ifndef OPENSSL_NO_ENGINE
185                 else if (strcmp(*argv,"-engine") == 0)
186                         {
187                         if (--argc < 1) goto bad;
188                         engine= *(++argv);
189                         }
190 #endif
191                 else if (strcmp(*argv,"-d") == 0)
192                         enc=0;
193                 else if (strcmp(*argv,"-p") == 0)
194                         printkey=1;
195                 else if (strcmp(*argv,"-v") == 0)
196                         verbose=1;
197                 else if (strcmp(*argv,"-nopad") == 0)
198                         nopad=1;
199                 else if (strcmp(*argv,"-salt") == 0)
200                         nosalt=0;
201                 else if (strcmp(*argv,"-nosalt") == 0)
202                         nosalt=1;
203                 else if (strcmp(*argv,"-debug") == 0)
204                         debug=1;
205                 else if (strcmp(*argv,"-P") == 0)
206                         printkey=2;
207                 else if (strcmp(*argv,"-A") == 0)
208                         olb64=1;
209                 else if (strcmp(*argv,"-a") == 0)
210                         base64=1;
211                 else if (strcmp(*argv,"-base64") == 0)
212                         base64=1;
213 #ifdef ZLIB
214                 else if (strcmp(*argv,"-z") == 0)
215                         do_zlib=1;
216 #endif
217                 else if (strcmp(*argv,"-bufsize") == 0)
218                         {
219                         if (--argc < 1) goto bad;
220                         bufsize=(unsigned char *)*(++argv);
221                         }
222                 else if (strcmp(*argv,"-k") == 0)
223                         {
224                         if (--argc < 1) goto bad;
225                         str= *(++argv);
226                         }
227                 else if (strcmp(*argv,"-kfile") == 0)
228                         {
229                         static char buf[128];
230                         FILE *infile;
231                         char *file;
232
233                         if (--argc < 1) goto bad;
234                         file= *(++argv);
235                         infile=fopen(file,"r");
236                         if (infile == NULL)
237                                 {
238                                 BIO_printf(bio_err,"unable to read key from '%s'\n",
239                                         file);
240                                 goto bad;
241                                 }
242                         buf[0]='\0';
243                         if (!fgets(buf,sizeof buf,infile))
244                                 {
245                                 BIO_printf(bio_err,"unable to read key from '%s'\n",
246                                         file);
247                                 goto bad;
248                                 }
249                         fclose(infile);
250                         i=strlen(buf);
251                         if ((i > 0) &&
252                                 ((buf[i-1] == '\n') || (buf[i-1] == '\r')))
253                                 buf[--i]='\0';
254                         if ((i > 0) &&
255                                 ((buf[i-1] == '\n') || (buf[i-1] == '\r')))
256                                 buf[--i]='\0';
257                         if (i < 1)
258                                 {
259                                 BIO_printf(bio_err,"zero length password\n");
260                                 goto bad;
261                                 }
262                         str=buf;
263                         }
264                 else if (strcmp(*argv,"-K") == 0)
265                         {
266                         if (--argc < 1) goto bad;
267                         hkey= *(++argv);
268                         }
269                 else if (strcmp(*argv,"-S") == 0)
270                         {
271                         if (--argc < 1) goto bad;
272                         hsalt= *(++argv);
273                         }
274                 else if (strcmp(*argv,"-iv") == 0)
275                         {
276                         if (--argc < 1) goto bad;
277                         hiv= *(++argv);
278                         }
279                 else if (strcmp(*argv,"-md") == 0)
280                         {
281                         if (--argc < 1) goto bad;
282                         md= *(++argv);
283                         }
284                 else if ((argv[0][0] == '-') &&
285                         ((c=EVP_get_cipherbyname(&(argv[0][1]))) != NULL))
286                         {
287                         cipher=c;
288                         }
289                 else if (strcmp(*argv,"-none") == 0)
290                         cipher=NULL;
291                 else
292                         {
293                         BIO_printf(bio_err,"unknown option '%s'\n",*argv);
294 bad:
295                         BIO_printf(bio_err,"options are\n");
296                         BIO_printf(bio_err,"%-14s input file\n","-in <file>");
297                         BIO_printf(bio_err,"%-14s output file\n","-out <file>");
298                         BIO_printf(bio_err,"%-14s pass phrase source\n","-pass <arg>");
299                         BIO_printf(bio_err,"%-14s encrypt\n","-e");
300                         BIO_printf(bio_err,"%-14s decrypt\n","-d");
301                         BIO_printf(bio_err,"%-14s base64 encode/decode, depending on encryption flag\n","-a/-base64");
302                         BIO_printf(bio_err,"%-14s passphrase is the next argument\n","-k");
303                         BIO_printf(bio_err,"%-14s passphrase is the first line of the file argument\n","-kfile");
304                         BIO_printf(bio_err,"%-14s the next argument is the md to use to create a key\n","-md");
305                         BIO_printf(bio_err,"%-14s   from a passphrase.  One of md2, md5, sha or sha1\n","");
306                         BIO_printf(bio_err,"%-14s salt in hex is the next argument\n","-S");
307                         BIO_printf(bio_err,"%-14s key/iv in hex is the next argument\n","-K/-iv");
308                         BIO_printf(bio_err,"%-14s print the iv/key (then exit if -P)\n","-[pP]");
309                         BIO_printf(bio_err,"%-14s buffer size\n","-bufsize <n>");
310                         BIO_printf(bio_err,"%-14s disable standard block padding\n","-nopad");
311 #ifndef OPENSSL_NO_ENGINE
312                         BIO_printf(bio_err,"%-14s use engine e, possibly a hardware device.\n","-engine e");
313 #endif
314
315                         BIO_printf(bio_err,"Cipher Types\n");
316                         OBJ_NAME_do_all_sorted(OBJ_NAME_TYPE_CIPHER_METH,
317                                                show_ciphers,
318                                                bio_err);
319                         BIO_printf(bio_err,"\n");
320
321                         goto end;
322                         }
323                 argc--;
324                 argv++;
325                 }
326
327 #ifndef OPENSSL_NO_ENGINE
328         setup_engine(bio_err, engine, 0);
329 #endif
330
331         if (md && (dgst=EVP_get_digestbyname(md)) == NULL)
332                 {
333                 BIO_printf(bio_err,"%s is an unsupported message digest type\n",md);
334                 goto end;
335                 }
336
337         if (dgst == NULL)
338                 {
339                 dgst = EVP_md5();
340                 }
341
342         if (bufsize != NULL)
343                 {
344                 unsigned long n;
345
346                 for (n=0; *bufsize; bufsize++)
347                         {
348                         i= *bufsize;
349                         if ((i <= '9') && (i >= '0'))
350                                 n=n*10+i-'0';
351                         else if (i == 'k')
352                                 {
353                                 n*=1024;
354                                 bufsize++;
355                                 break;
356                                 }
357                         }
358                 if (*bufsize != '\0')
359                         {
360                         BIO_printf(bio_err,"invalid 'bufsize' specified.\n");
361                         goto end;
362                         }
363
364                 /* It must be large enough for a base64 encoded line */
365                 if (base64 && n < 80) n=80;
366
367                 bsize=(int)n;
368                 if (verbose) BIO_printf(bio_err,"bufsize=%d\n",bsize);
369                 }
370
371         strbuf=OPENSSL_malloc(SIZE);
372         buff=(unsigned char *)OPENSSL_malloc(EVP_ENCODE_LENGTH(bsize));
373         if ((buff == NULL) || (strbuf == NULL))
374                 {
375                 BIO_printf(bio_err,"OPENSSL_malloc failure %ld\n",(long)EVP_ENCODE_LENGTH(bsize));
376                 goto end;
377                 }
378
379         in=BIO_new(BIO_s_file());
380         out=BIO_new(BIO_s_file());
381         if ((in == NULL) || (out == NULL))
382                 {
383                 ERR_print_errors(bio_err);
384                 goto end;
385                 }
386         if (debug)
387                 {
388                 BIO_set_callback(in,BIO_debug_callback);
389                 BIO_set_callback(out,BIO_debug_callback);
390                 BIO_set_callback_arg(in,(char *)bio_err);
391                 BIO_set_callback_arg(out,(char *)bio_err);
392                 }
393
394         if (inf == NULL)
395                 {
396                 if (bufsize != NULL)
397                         setvbuf(stdin, (char *)NULL, _IONBF, 0);
398                 BIO_set_fp(in,stdin,BIO_NOCLOSE);
399                 }
400         else
401                 {
402                 if (BIO_read_filename(in,inf) <= 0)
403                         {
404                         perror(inf);
405                         goto end;
406                         }
407                 }
408
409         if(!str && passarg) {
410                 if(!app_passwd(bio_err, passarg, NULL, &pass, NULL)) {
411                         BIO_printf(bio_err, "Error getting password\n");
412                         goto end;
413                 }
414                 str = pass;
415         }
416
417         if ((str == NULL) && (cipher != NULL) && (hkey == NULL))
418                 {
419                 for (;;)
420                         {
421                         char buf[200];
422
423                         BIO_snprintf(buf,sizeof buf,"enter %s %s password:",
424                                      OBJ_nid2ln(EVP_CIPHER_nid(cipher)),
425                                      (enc)?"encryption":"decryption");
426                         strbuf[0]='\0';
427                         i=EVP_read_pw_string((char *)strbuf,SIZE,buf,enc);
428                         if (i == 0)
429                                 {
430                                 if (strbuf[0] == '\0')
431                                         {
432                                         ret=1;
433                                         goto end;
434                                         }
435                                 str=strbuf;
436                                 break;
437                                 }
438                         if (i < 0)
439                                 {
440                                 BIO_printf(bio_err,"bad password read\n");
441                                 goto end;
442                                 }
443                         }
444                 }
445
446
447         if (outf == NULL)
448                 {
449                 BIO_set_fp(out,stdout,BIO_NOCLOSE);
450                 if (bufsize != NULL)
451                         setvbuf(stdout, (char *)NULL, _IONBF, 0);
452 #ifdef OPENSSL_SYS_VMS
453                 {
454                 BIO *tmpbio = BIO_new(BIO_f_linebuffer());
455                 out = BIO_push(tmpbio, out);
456                 }
457 #endif
458                 }
459         else
460                 {
461                 if (BIO_write_filename(out,outf) <= 0)
462                         {
463                         perror(outf);
464                         goto end;
465                         }
466                 }
467
468         rbio=in;
469         wbio=out;
470
471 #ifdef ZLIB
472
473         if (do_zlib)
474                 {
475                 if ((bzl=BIO_new(BIO_f_zlib())) == NULL)
476                         goto end;
477                 if (enc)
478                         wbio=BIO_push(bzl,wbio);
479                 else
480                         rbio=BIO_push(bzl,rbio);
481                 }
482 #endif
483
484         if (base64)
485                 {
486                 if ((b64=BIO_new(BIO_f_base64())) == NULL)
487                         goto end;
488                 if (debug)
489                         {
490                         BIO_set_callback(b64,BIO_debug_callback);
491                         BIO_set_callback_arg(b64,(char *)bio_err);
492                         }
493                 if (olb64)
494                         BIO_set_flags(b64,BIO_FLAGS_BASE64_NO_NL);
495                 if (enc)
496                         wbio=BIO_push(b64,wbio);
497                 else
498                         rbio=BIO_push(b64,rbio);
499                 }
500
501         if (cipher != NULL)
502                 {
503                 /* Note that str is NULL if a key was passed on the command
504                  * line, so we get no salt in that case. Is this a bug?
505                  */
506                 if (str != NULL)
507                         {
508                         /* Salt handling: if encrypting generate a salt and
509                          * write to output BIO. If decrypting read salt from
510                          * input BIO.
511                          */
512                         unsigned char *sptr;
513                         if(nosalt) sptr = NULL;
514                         else {
515                                 if(enc) {
516                                         if(hsalt) {
517                                                 if(!set_hex(hsalt,salt,sizeof salt)) {
518                                                         BIO_printf(bio_err,
519                                                                 "invalid hex salt value\n");
520                                                         goto end;
521                                                 }
522                                         } else if (RAND_pseudo_bytes(salt, sizeof salt) < 0)
523                                                 goto end;
524                                         /* If -P option then don't bother writing */
525                                         if((printkey != 2)
526                                            && (BIO_write(wbio,magic,
527                                                          sizeof magic-1) != sizeof magic-1
528                                                || BIO_write(wbio,
529                                                             (char *)salt,
530                                                             sizeof salt) != sizeof salt)) {
531                                                 BIO_printf(bio_err,"error writing output file\n");
532                                                 goto end;
533                                         }
534                                 } else if(BIO_read(rbio,mbuf,sizeof mbuf) != sizeof mbuf
535                                           || BIO_read(rbio,
536                                                       (unsigned char *)salt,
537                                     sizeof salt) != sizeof salt) {
538                                         BIO_printf(bio_err,"error reading input file\n");
539                                         goto end;
540                                 } else if(memcmp(mbuf,magic,sizeof magic-1)) {
541                                     BIO_printf(bio_err,"bad magic number\n");
542                                     goto end;
543                                 }
544
545                                 sptr = salt;
546                         }
547
548                         EVP_BytesToKey(cipher,dgst,sptr,
549                                 (unsigned char *)str,
550                                 strlen(str),1,key,iv);
551                         /* zero the complete buffer or the string
552                          * passed from the command line
553                          * bug picked up by
554                          * Larry J. Hughes Jr. <hughes@indiana.edu> */
555                         if (str == strbuf)
556                                 OPENSSL_cleanse(str,SIZE);
557                         else
558                                 OPENSSL_cleanse(str,strlen(str));
559                         }
560                 if ((hiv != NULL) && !set_hex(hiv,iv,sizeof iv))
561                         {
562                         BIO_printf(bio_err,"invalid hex iv value\n");
563                         goto end;
564                         }
565                 if ((hiv == NULL) && (str == NULL)
566                     && EVP_CIPHER_iv_length(cipher) != 0)
567                         {
568                         /* No IV was explicitly set and no IV was generated
569                          * during EVP_BytesToKey. Hence the IV is undefined,
570                          * making correct decryption impossible. */
571                         BIO_printf(bio_err, "iv undefined\n");
572                         goto end;
573                         }
574                 if ((hkey != NULL) && !set_hex(hkey,key,sizeof key))
575                         {
576                         BIO_printf(bio_err,"invalid hex key value\n");
577                         goto end;
578                         }
579
580                 if ((benc=BIO_new(BIO_f_cipher())) == NULL)
581                         goto end;
582
583                 /* Since we may be changing parameters work on the encryption
584                  * context rather than calling BIO_set_cipher().
585                  */
586
587                 BIO_get_cipher_ctx(benc, &ctx);
588                 if (!EVP_CipherInit_ex(ctx, cipher, NULL, NULL, NULL, enc))
589                         {
590                         BIO_printf(bio_err, "Error setting cipher %s\n",
591                                 EVP_CIPHER_name(cipher));
592                         ERR_print_errors(bio_err);
593                         goto end;
594                         }
595
596                 if (nopad)
597                         EVP_CIPHER_CTX_set_padding(ctx, 0);
598
599                 if (!EVP_CipherInit_ex(ctx, NULL, NULL, key, iv, enc))
600                         {
601                         BIO_printf(bio_err, "Error setting cipher %s\n",
602                                 EVP_CIPHER_name(cipher));
603                         ERR_print_errors(bio_err);
604                         goto end;
605                         }
606
607                 if (debug)
608                         {
609                         BIO_set_callback(benc,BIO_debug_callback);
610                         BIO_set_callback_arg(benc,(char *)bio_err);
611                         }
612
613                 if (printkey)
614                         {
615                         if (!nosalt)
616                                 {
617                                 printf("salt=");
618                                 for (i=0; i<(int)sizeof(salt); i++)
619                                         printf("%02X",salt[i]);
620                                 printf("\n");
621                                 }
622                         if (cipher->key_len > 0)
623                                 {
624                                 printf("key=");
625                                 for (i=0; i<cipher->key_len; i++)
626                                         printf("%02X",key[i]);
627                                 printf("\n");
628                                 }
629                         if (cipher->iv_len > 0)
630                                 {
631                                 printf("iv =");
632                                 for (i=0; i<cipher->iv_len; i++)
633                                         printf("%02X",iv[i]);
634                                 printf("\n");
635                                 }
636                         if (printkey == 2)
637                                 {
638                                 ret=0;
639                                 goto end;
640                                 }
641                         }
642                 }
643
644         /* Only encrypt/decrypt as we write the file */
645         if (benc != NULL)
646                 wbio=BIO_push(benc,wbio);
647
648         for (;;)
649                 {
650                 inl=BIO_read(rbio,(char *)buff,bsize);
651                 if (inl <= 0) break;
652                 if (BIO_write(wbio,(char *)buff,inl) != inl)
653                         {
654                         BIO_printf(bio_err,"error writing output file\n");
655                         goto end;
656                         }
657                 }
658         if (!BIO_flush(wbio))
659                 {
660                 BIO_printf(bio_err,"bad decrypt\n");
661                 goto end;
662                 }
663
664         ret=0;
665         if (verbose)
666                 {
667                 BIO_printf(bio_err,"bytes read   :%8ld\n",BIO_number_read(in));
668                 BIO_printf(bio_err,"bytes written:%8ld\n",BIO_number_written(out));
669                 }
670 end:
671         ERR_print_errors(bio_err);
672         if (strbuf != NULL) OPENSSL_free(strbuf);
673         if (buff != NULL) OPENSSL_free(buff);
674         if (in != NULL) BIO_free(in);
675         if (out != NULL) BIO_free_all(out);
676         if (benc != NULL) BIO_free(benc);
677         if (b64 != NULL) BIO_free(b64);
678 #ifdef ZLIB
679         if (bzl != NULL) BIO_free(bzl);
680 #endif
681         if(pass) OPENSSL_free(pass);
682         apps_shutdown();
683         OPENSSL_EXIT(ret);
684         }
685
686 int set_hex(char *in, unsigned char *out, int size)
687         {
688         int i,n;
689         unsigned char j;
690
691         n=strlen(in);
692         if (n > (size*2))
693                 {
694                 BIO_printf(bio_err,"hex string is too long\n");
695                 return(0);
696                 }
697         memset(out,0,size);
698         for (i=0; i<n; i++)
699                 {
700                 j=(unsigned char)*in;
701                 *(in++)='\0';
702                 if (j == 0) break;
703                 if ((j >= '0') && (j <= '9'))
704                         j-='0';
705                 else if ((j >= 'A') && (j <= 'F'))
706                         j=j-'A'+10;
707                 else if ((j >= 'a') && (j <= 'f'))
708                         j=j-'a'+10;
709                 else
710                         {
711                         BIO_printf(bio_err,"non-hex digit\n");
712                         return(0);
713                         }
714                 if (i&1)
715                         out[i/2]|=j;
716                 else
717                         out[i/2]=(j<<4);
718                 }
719         return(1);
720         }