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