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