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