Include the default iteration count in the help for the enc command
[openssl.git] / apps / enc.c
1 /*
2  * Copyright 1995-2022 The OpenSSL Project Authors. All Rights Reserved.
3  *
4  * Licensed under the Apache License 2.0 (the "License").  You may not use
5  * this file except in compliance with the License.  You can obtain a copy
6  * in the file LICENSE in the source distribution or at
7  * https://www.openssl.org/source/license.html
8  */
9
10 #include <stdio.h>
11 #include <stdlib.h>
12 #include <string.h>
13 #include <limits.h>
14 #include "apps.h"
15 #include "progs.h"
16 #include <openssl/bio.h>
17 #include <openssl/err.h>
18 #include <openssl/evp.h>
19 #include <openssl/objects.h>
20 #include <openssl/x509.h>
21 #include <openssl/rand.h>
22 #include <openssl/pem.h>
23 #ifndef OPENSSL_NO_COMP
24 # include <openssl/comp.h>
25 #endif
26 #include <ctype.h>
27
28 #undef SIZE
29 #undef BSIZE
30 #define SIZE    (512)
31 #define BSIZE   (8*1024)
32
33 #define PBKDF2_ITER_DEFAULT     10000
34 #define STR(a) XSTR(a)
35 #define XSTR(a) #a
36
37 static int set_hex(const char *in, unsigned char *out, int size);
38 static void show_ciphers(const OBJ_NAME *name, void *bio_);
39
40 struct doall_enc_ciphers {
41     BIO *bio;
42     int n;
43 };
44
45 typedef enum OPTION_choice {
46     OPT_COMMON,
47     OPT_LIST,
48     OPT_E, OPT_IN, OPT_OUT, OPT_PASS, OPT_ENGINE, OPT_D, OPT_P, OPT_V,
49     OPT_NOPAD, OPT_SALT, OPT_NOSALT, OPT_DEBUG, OPT_UPPER_P, OPT_UPPER_A,
50     OPT_A, OPT_Z, OPT_BUFSIZE, OPT_K, OPT_KFILE, OPT_UPPER_K, OPT_NONE,
51     OPT_UPPER_S, OPT_IV, OPT_MD, OPT_ITER, OPT_PBKDF2, OPT_CIPHER,
52     OPT_R_ENUM, OPT_PROV_ENUM
53 } OPTION_CHOICE;
54
55 const OPTIONS enc_options[] = {
56     OPT_SECTION("General"),
57     {"help", OPT_HELP, '-', "Display this summary"},
58     {"list", OPT_LIST, '-', "List ciphers"},
59 #ifndef OPENSSL_NO_DEPRECATED_3_0
60     {"ciphers", OPT_LIST, '-', "Alias for -list"},
61 #endif
62     {"e", OPT_E, '-', "Encrypt"},
63     {"d", OPT_D, '-', "Decrypt"},
64     {"p", OPT_P, '-', "Print the iv/key"},
65     {"P", OPT_UPPER_P, '-', "Print the iv/key and exit"},
66 #ifndef OPENSSL_NO_ENGINE
67     {"engine", OPT_ENGINE, 's', "Use engine, possibly a hardware device"},
68 #endif
69
70     OPT_SECTION("Input"),
71     {"in", OPT_IN, '<', "Input file"},
72     {"k", OPT_K, 's', "Passphrase"},
73     {"kfile", OPT_KFILE, '<', "Read passphrase from file"},
74
75     OPT_SECTION("Output"),
76     {"out", OPT_OUT, '>', "Output file"},
77     {"pass", OPT_PASS, 's', "Passphrase source"},
78     {"v", OPT_V, '-', "Verbose output"},
79     {"a", OPT_A, '-', "Base64 encode/decode, depending on encryption flag"},
80     {"base64", OPT_A, '-', "Same as option -a"},
81     {"A", OPT_UPPER_A, '-',
82      "Used with -[base64|a] to specify base64 buffer as a single line"},
83
84     OPT_SECTION("Encryption"),
85     {"nopad", OPT_NOPAD, '-', "Disable standard block padding"},
86     {"salt", OPT_SALT, '-', "Use salt in the KDF (default)"},
87     {"nosalt", OPT_NOSALT, '-', "Do not use salt in the KDF"},
88     {"debug", OPT_DEBUG, '-', "Print debug info"},
89
90     {"bufsize", OPT_BUFSIZE, 's', "Buffer size"},
91     {"K", OPT_UPPER_K, 's', "Raw key, in hex"},
92     {"S", OPT_UPPER_S, 's', "Salt, in hex"},
93     {"iv", OPT_IV, 's', "IV in hex"},
94     {"md", OPT_MD, 's', "Use specified digest to create a key from the passphrase"},
95     {"iter", OPT_ITER, 'p',
96      "Specify the iteration count and force the use of PBKDF2"},
97     {OPT_MORE_STR, 0, 0, "Default: " STR(PBKDF2_ITER_DEFAULT)},
98     {"pbkdf2", OPT_PBKDF2, '-',
99      "Use password-based key derivation function 2 (PBKDF2)"},
100     {OPT_MORE_STR, 0, 0,
101      "Use -iter to change the iteration count from " STR(PBKDF2_ITER_DEFAULT)},
102     {"none", OPT_NONE, '-', "Don't encrypt"},
103 #ifndef OPENSSL_NO_ZLIB
104     {"z", OPT_Z, '-', "Compress or decompress encrypted data using zlib"},
105 #endif
106     {"", OPT_CIPHER, '-', "Any supported cipher"},
107
108     OPT_R_OPTIONS,
109     OPT_PROV_OPTIONS,
110     {NULL}
111 };
112
113 int enc_main(int argc, char **argv)
114 {
115     static char buf[128];
116     static const char magic[] = "Salted__";
117     ENGINE *e = NULL;
118     BIO *in = NULL, *out = NULL, *b64 = NULL, *benc = NULL, *rbio =
119         NULL, *wbio = NULL;
120     EVP_CIPHER_CTX *ctx = NULL;
121     EVP_CIPHER *cipher = NULL;
122     EVP_MD *dgst = NULL;
123     const char *digestname = NULL;
124     char *hkey = NULL, *hiv = NULL, *hsalt = NULL, *p;
125     char *infile = NULL, *outfile = NULL, *prog;
126     char *str = NULL, *passarg = NULL, *pass = NULL, *strbuf = NULL;
127     const char *ciphername = NULL;
128     char mbuf[sizeof(magic) - 1];
129     OPTION_CHOICE o;
130     int bsize = BSIZE, verbose = 0, debug = 0, olb64 = 0, nosalt = 0;
131     int enc = 1, printkey = 0, i, k;
132     int base64 = 0, informat = FORMAT_BINARY, outformat = FORMAT_BINARY;
133     int ret = 1, inl, nopad = 0;
134     unsigned char key[EVP_MAX_KEY_LENGTH], iv[EVP_MAX_IV_LENGTH];
135     unsigned char *buff = NULL, salt[PKCS5_SALT_LEN];
136     int pbkdf2 = 0;
137     int iter = 0;
138     long n;
139     int streamable = 1;
140     int wrap = 0;
141     struct doall_enc_ciphers dec;
142 #ifndef OPENSSL_NO_ZLIB
143     int do_zlib = 0;
144     BIO *bzl = NULL;
145 #endif
146     int do_brotli = 0;
147     BIO *bbrot = NULL;
148     int do_zstd = 0;
149     BIO *bzstd = NULL;
150
151     /* first check the command name */
152     if (strcmp(argv[0], "base64") == 0)
153         base64 = 1;
154 #ifndef OPENSSL_NO_ZLIB
155     else if (strcmp(argv[0], "zlib") == 0)
156         do_zlib = 1;
157 #endif
158 #ifndef OPENSSL_NO_BROTLI
159     else if (strcmp(argv[0], "brotli") == 0)
160         do_brotli = 1;
161 #endif
162 #ifndef OPENSSL_NO_ZSTD
163     else if (strcmp(argv[0], "zstd") == 0)
164         do_zstd = 1;
165 #endif
166     else if (strcmp(argv[0], "enc") != 0)
167         ciphername = argv[0];
168
169     opt_set_unknown_name("cipher");
170     prog = opt_init(argc, argv, enc_options);
171     while ((o = opt_next()) != OPT_EOF) {
172         switch (o) {
173         case OPT_EOF:
174         case OPT_ERR:
175  opthelp:
176             BIO_printf(bio_err, "%s: Use -help for summary.\n", prog);
177             goto end;
178         case OPT_HELP:
179             opt_help(enc_options);
180             ret = 0;
181             goto end;
182         case OPT_LIST:
183             BIO_printf(bio_out, "Supported ciphers:\n");
184             dec.bio = bio_out;
185             dec.n = 0;
186             OBJ_NAME_do_all_sorted(OBJ_NAME_TYPE_CIPHER_METH,
187                                    show_ciphers, &dec);
188             BIO_printf(bio_out, "\n");
189             ret = 0;
190             goto end;
191         case OPT_E:
192             enc = 1;
193             break;
194         case OPT_IN:
195             infile = opt_arg();
196             break;
197         case OPT_OUT:
198             outfile = opt_arg();
199             break;
200         case OPT_PASS:
201             passarg = opt_arg();
202             break;
203         case OPT_ENGINE:
204             e = setup_engine(opt_arg(), 0);
205             break;
206         case OPT_D:
207             enc = 0;
208             break;
209         case OPT_P:
210             printkey = 1;
211             break;
212         case OPT_V:
213             verbose = 1;
214             break;
215         case OPT_NOPAD:
216             nopad = 1;
217             break;
218         case OPT_SALT:
219             nosalt = 0;
220             break;
221         case OPT_NOSALT:
222             nosalt = 1;
223             break;
224         case OPT_DEBUG:
225             debug = 1;
226             break;
227         case OPT_UPPER_P:
228             printkey = 2;
229             break;
230         case OPT_UPPER_A:
231             olb64 = 1;
232             break;
233         case OPT_A:
234             base64 = 1;
235             break;
236         case OPT_Z:
237 #ifndef OPENSSL_NO_ZLIB
238             do_zlib = 1;
239 #endif
240             break;
241         case OPT_BUFSIZE:
242             p = opt_arg();
243             i = (int)strlen(p) - 1;
244             k = i >= 1 && p[i] == 'k';
245             if (k)
246                 p[i] = '\0';
247             if (!opt_long(opt_arg(), &n)
248                     || n < 0 || (k && n >= LONG_MAX / 1024))
249                 goto opthelp;
250             if (k)
251                 n *= 1024;
252             bsize = (int)n;
253             break;
254         case OPT_K:
255             str = opt_arg();
256             break;
257         case OPT_KFILE:
258             in = bio_open_default(opt_arg(), 'r', FORMAT_TEXT);
259             if (in == NULL)
260                 goto opthelp;
261             i = BIO_gets(in, buf, sizeof(buf));
262             BIO_free(in);
263             in = NULL;
264             if (i <= 0) {
265                 BIO_printf(bio_err,
266                            "%s Can't read key from %s\n", prog, opt_arg());
267                 goto opthelp;
268             }
269             while (--i > 0 && (buf[i] == '\r' || buf[i] == '\n'))
270                 buf[i] = '\0';
271             if (i <= 0) {
272                 BIO_printf(bio_err, "%s: zero length password\n", prog);
273                 goto opthelp;
274             }
275             str = buf;
276             break;
277         case OPT_UPPER_K:
278             hkey = opt_arg();
279             break;
280         case OPT_UPPER_S:
281             hsalt = opt_arg();
282             break;
283         case OPT_IV:
284             hiv = opt_arg();
285             break;
286         case OPT_MD:
287             digestname = opt_arg();
288             break;
289         case OPT_CIPHER:
290             ciphername = opt_unknown();
291             break;
292         case OPT_ITER:
293             iter = opt_int_arg();
294             pbkdf2 = 1;
295             break;
296         case OPT_PBKDF2:
297             pbkdf2 = 1;
298             if (iter == 0)    /* do not overwrite a chosen value */
299                 iter = PBKDF2_ITER_DEFAULT;
300             break;
301         case OPT_NONE:
302             cipher = NULL;
303             break;
304         case OPT_R_CASES:
305             if (!opt_rand(o))
306                 goto end;
307             break;
308         case OPT_PROV_CASES:
309             if (!opt_provider(o))
310                 goto end;
311             break;
312         }
313     }
314
315     /* No extra arguments. */
316     if (!opt_check_rest_arg(NULL))
317         goto opthelp;
318     if (!app_RAND_load())
319         goto end;
320
321     /* Get the cipher name, either from progname (if set) or flag. */
322     if (!opt_cipher(ciphername, &cipher))
323         goto opthelp;
324     if (cipher && (EVP_CIPHER_mode(cipher) == EVP_CIPH_WRAP_MODE)) {
325         wrap = 1;
326         streamable = 0;
327     }
328     if (digestname != NULL) {
329         if (!opt_md(digestname, &dgst))
330             goto opthelp;
331     }
332     if (dgst == NULL)
333         dgst = (EVP_MD *)EVP_sha256();
334
335     if (iter == 0)
336         iter = 1;
337
338     /* It must be large enough for a base64 encoded line */
339     if (base64 && bsize < 80)
340         bsize = 80;
341     if (verbose)
342         BIO_printf(bio_err, "bufsize=%d\n", bsize);
343
344 #ifndef OPENSSL_NO_ZLIB
345     if (do_zlib)
346         base64 = 0;
347 #endif
348     if (do_brotli)
349         base64 = 0;
350     if (do_zstd)
351         base64 = 0;
352
353     if (base64) {
354         if (enc)
355             outformat = FORMAT_BASE64;
356         else
357             informat = FORMAT_BASE64;
358     }
359
360     strbuf = app_malloc(SIZE, "strbuf");
361     buff = app_malloc(EVP_ENCODE_LENGTH(bsize), "evp buffer");
362
363     if (infile == NULL) {
364         if (!streamable && printkey != 2) {  /* if just print key and exit, it's ok */
365             BIO_printf(bio_err, "Unstreamable cipher mode\n");
366             goto end;
367         }
368         in = dup_bio_in(informat);
369     } else {
370         in = bio_open_default(infile, 'r', informat);
371     }
372     if (in == NULL)
373         goto end;
374
375     if (str == NULL && passarg != NULL) {
376         if (!app_passwd(passarg, NULL, &pass, NULL)) {
377             BIO_printf(bio_err, "Error getting password\n");
378             goto end;
379         }
380         str = pass;
381     }
382
383     if ((str == NULL) && (cipher != NULL) && (hkey == NULL)) {
384         if (1) {
385 #ifndef OPENSSL_NO_UI_CONSOLE
386             for (;;) {
387                 char prompt[200];
388
389                 BIO_snprintf(prompt, sizeof(prompt), "enter %s %s password:",
390                         EVP_CIPHER_get0_name(cipher),
391                         (enc) ? "encryption" : "decryption");
392                 strbuf[0] = '\0';
393                 i = EVP_read_pw_string((char *)strbuf, SIZE, prompt, enc);
394                 if (i == 0) {
395                     if (strbuf[0] == '\0') {
396                         ret = 1;
397                         goto end;
398                     }
399                     str = strbuf;
400                     break;
401                 }
402                 if (i < 0) {
403                     BIO_printf(bio_err, "bad password read\n");
404                     goto end;
405                 }
406             }
407         } else {
408 #endif
409             BIO_printf(bio_err, "password required\n");
410             goto end;
411         }
412     }
413
414     out = bio_open_default(outfile, 'w', outformat);
415     if (out == NULL)
416         goto end;
417
418     if (debug) {
419         BIO_set_callback_ex(in, BIO_debug_callback_ex);
420         BIO_set_callback_ex(out, BIO_debug_callback_ex);
421         BIO_set_callback_arg(in, (char *)bio_err);
422         BIO_set_callback_arg(out, (char *)bio_err);
423     }
424
425     rbio = in;
426     wbio = out;
427
428 #ifndef OPENSSL_NO_COMP
429 # ifndef OPENSSL_NO_ZLIB
430     if (do_zlib) {
431         if ((bzl = BIO_new(BIO_f_zlib())) == NULL)
432             goto end;
433         if (debug) {
434             BIO_set_callback_ex(bzl, BIO_debug_callback_ex);
435             BIO_set_callback_arg(bzl, (char *)bio_err);
436         }
437         if (enc)
438             wbio = BIO_push(bzl, wbio);
439         else
440             rbio = BIO_push(bzl, rbio);
441     }
442 # endif
443
444     if (do_brotli) {
445         if ((bbrot = BIO_new(BIO_f_brotli())) == NULL)
446             goto end;
447         if (debug) {
448             BIO_set_callback_ex(bbrot, BIO_debug_callback_ex);
449             BIO_set_callback_arg(bbrot, (char *)bio_err);
450         }
451         if (enc)
452             wbio = BIO_push(bbrot, wbio);
453         else
454             rbio = BIO_push(bbrot, rbio);
455     }
456
457     if (do_zstd) {
458         if ((bzstd = BIO_new(BIO_f_zstd())) == NULL)
459             goto end;
460         if (debug) {
461             BIO_set_callback_ex(bzstd, BIO_debug_callback_ex);
462             BIO_set_callback_arg(bzstd, (char *)bio_err);
463         }
464         if (enc)
465             wbio = BIO_push(bzstd, wbio);
466         else
467             rbio = BIO_push(bzstd, rbio);
468     }
469 #endif
470
471     if (base64) {
472         if ((b64 = BIO_new(BIO_f_base64())) == NULL)
473             goto end;
474         if (debug) {
475             BIO_set_callback_ex(b64, BIO_debug_callback_ex);
476             BIO_set_callback_arg(b64, (char *)bio_err);
477         }
478         if (olb64)
479             BIO_set_flags(b64, BIO_FLAGS_BASE64_NO_NL);
480         if (enc)
481             wbio = BIO_push(b64, wbio);
482         else
483             rbio = BIO_push(b64, rbio);
484     }
485
486     if (cipher != NULL) {
487         if (str != NULL) { /* a passphrase is available */
488             /*
489              * Salt handling: if encrypting generate a salt if not supplied,
490              * and write to output BIO. If decrypting use salt from input BIO
491              * if not given with args
492              */
493             unsigned char *sptr;
494             size_t str_len = strlen(str);
495
496             if (nosalt) {
497                 sptr = NULL;
498             } else {
499                 if (hsalt != NULL && !set_hex(hsalt, salt, sizeof(salt))) {
500                     BIO_printf(bio_err, "invalid hex salt value\n");
501                     goto end;
502                 }
503                 if (enc) {  /* encryption */
504                     if (hsalt == NULL) {
505                         if (RAND_bytes(salt, sizeof(salt)) <= 0) {
506                             BIO_printf(bio_err, "RAND_bytes failed\n");
507                             goto end;
508                         }
509                         /*
510                          * If -P option then don't bother writing.
511                          * If salt is given, shouldn't either ?
512                          */
513                         if ((printkey != 2)
514                             && (BIO_write(wbio, magic,
515                                           sizeof(magic) - 1) != sizeof(magic) - 1
516                                 || BIO_write(wbio,
517                                              (char *)salt,
518                                              sizeof(salt)) != sizeof(salt))) {
519                             BIO_printf(bio_err, "error writing output file\n");
520                             goto end;
521                         }
522                     }
523                 } else {    /* decryption */
524                     if (hsalt == NULL) {
525                         if (BIO_read(rbio, mbuf, sizeof(mbuf)) != sizeof(mbuf)) {
526                             BIO_printf(bio_err, "error reading input file\n");
527                             goto end;
528                         }
529                         if (memcmp(mbuf, magic, sizeof(mbuf)) == 0) { /* file IS salted */
530                             if (BIO_read(rbio, salt,
531                                          sizeof(salt)) != sizeof(salt)) {
532                                 BIO_printf(bio_err, "error reading input file\n");
533                                 goto end;
534                             }
535                         } else { /* file is NOT salted, NO salt available */
536                             BIO_printf(bio_err, "bad magic number\n");
537                             goto end;
538                         }
539                     }
540                 }
541                 sptr = salt;
542             }
543
544             if (pbkdf2 == 1) {
545                 /*
546                 * derive key and default iv
547                 * concatenated into a temporary buffer
548                 */
549                 unsigned char tmpkeyiv[EVP_MAX_KEY_LENGTH + EVP_MAX_IV_LENGTH];
550                 int iklen = EVP_CIPHER_get_key_length(cipher);
551                 int ivlen = EVP_CIPHER_get_iv_length(cipher);
552                 /* not needed if HASH_UPDATE() is fixed : */
553                 int islen = (sptr != NULL ? sizeof(salt) : 0);
554                 if (!PKCS5_PBKDF2_HMAC(str, str_len, sptr, islen,
555                                        iter, dgst, iklen+ivlen, tmpkeyiv)) {
556                     BIO_printf(bio_err, "PKCS5_PBKDF2_HMAC failed\n");
557                     goto end;
558                 }
559                 /* split and move data back to global buffer */
560                 memcpy(key, tmpkeyiv, iklen);
561                 memcpy(iv, tmpkeyiv+iklen, ivlen);
562             } else {
563                 BIO_printf(bio_err, "*** WARNING : "
564                                     "deprecated key derivation used.\n"
565                                     "Using -iter or -pbkdf2 would be better.\n");
566                 if (!EVP_BytesToKey(cipher, dgst, sptr,
567                                     (unsigned char *)str, str_len,
568                                     1, key, iv)) {
569                     BIO_printf(bio_err, "EVP_BytesToKey failed\n");
570                     goto end;
571                 }
572             }
573             /*
574              * zero the complete buffer or the string passed from the command
575              * line.
576              */
577             if (str == strbuf)
578                 OPENSSL_cleanse(str, SIZE);
579             else
580                 OPENSSL_cleanse(str, str_len);
581         }
582         if (hiv != NULL) {
583             int siz = EVP_CIPHER_get_iv_length(cipher);
584             if (siz == 0) {
585                 BIO_printf(bio_err, "warning: iv not used by this cipher\n");
586             } else if (!set_hex(hiv, iv, siz)) {
587                 BIO_printf(bio_err, "invalid hex iv value\n");
588                 goto end;
589             }
590         }
591         if ((hiv == NULL) && (str == NULL)
592             && EVP_CIPHER_get_iv_length(cipher) != 0
593             && wrap == 0) {
594             /*
595              * No IV was explicitly set and no IV was generated.
596              * Hence the IV is undefined, making correct decryption impossible.
597              */
598             BIO_printf(bio_err, "iv undefined\n");
599             goto end;
600         }
601         if (hkey != NULL) {
602             if (!set_hex(hkey, key, EVP_CIPHER_get_key_length(cipher))) {
603                 BIO_printf(bio_err, "invalid hex key value\n");
604                 goto end;
605             }
606             /* wiping secret data as we no longer need it */
607             cleanse(hkey);
608         }
609
610         if ((benc = BIO_new(BIO_f_cipher())) == NULL)
611             goto end;
612
613         /*
614          * Since we may be changing parameters work on the encryption context
615          * rather than calling BIO_set_cipher().
616          */
617
618         BIO_get_cipher_ctx(benc, &ctx);
619
620         if (wrap == 1)
621             EVP_CIPHER_CTX_set_flags(ctx, EVP_CIPHER_CTX_FLAG_WRAP_ALLOW);
622
623         if (!EVP_CipherInit_ex(ctx, cipher, e, NULL, NULL, enc)) {
624             BIO_printf(bio_err, "Error setting cipher %s\n",
625                        EVP_CIPHER_get0_name(cipher));
626             ERR_print_errors(bio_err);
627             goto end;
628         }
629
630         if (nopad)
631             EVP_CIPHER_CTX_set_padding(ctx, 0);
632
633         if (!EVP_CipherInit_ex(ctx, NULL, NULL, key,
634                                (hiv == NULL && wrap == 1 ? NULL : iv), enc)) {
635             BIO_printf(bio_err, "Error setting cipher %s\n",
636                        EVP_CIPHER_get0_name(cipher));
637             ERR_print_errors(bio_err);
638             goto end;
639         }
640
641         if (debug) {
642             BIO_set_callback_ex(benc, BIO_debug_callback_ex);
643             BIO_set_callback_arg(benc, (char *)bio_err);
644         }
645
646         if (printkey) {
647             if (!nosalt) {
648                 printf("salt=");
649                 for (i = 0; i < (int)sizeof(salt); i++)
650                     printf("%02X", salt[i]);
651                 printf("\n");
652             }
653             if (EVP_CIPHER_get_key_length(cipher) > 0) {
654                 printf("key=");
655                 for (i = 0; i < EVP_CIPHER_get_key_length(cipher); i++)
656                     printf("%02X", key[i]);
657                 printf("\n");
658             }
659             if (EVP_CIPHER_get_iv_length(cipher) > 0) {
660                 printf("iv =");
661                 for (i = 0; i < EVP_CIPHER_get_iv_length(cipher); i++)
662                     printf("%02X", iv[i]);
663                 printf("\n");
664             }
665             if (printkey == 2) {
666                 ret = 0;
667                 goto end;
668             }
669         }
670     }
671
672     /* Only encrypt/decrypt as we write the file */
673     if (benc != NULL)
674         wbio = BIO_push(benc, wbio);
675
676     while (BIO_pending(rbio) || !BIO_eof(rbio)) {
677         inl = BIO_read(rbio, (char *)buff, bsize);
678         if (inl <= 0)
679             break;
680         if (!streamable && !BIO_eof(rbio)) {    /* do not output data */
681             BIO_printf(bio_err, "Unstreamable cipher mode\n");
682             goto end;
683         }
684         if (BIO_write(wbio, (char *)buff, inl) != inl) {
685             BIO_printf(bio_err, "error writing output file\n");
686             goto end;
687         }
688         if (!streamable)
689             break;
690     }
691     if (!BIO_flush(wbio)) {
692         BIO_printf(bio_err, "bad decrypt\n");
693         goto end;
694     }
695
696     ret = 0;
697     if (verbose) {
698         BIO_printf(bio_err, "bytes read   : %8ju\n", BIO_number_read(in));
699         BIO_printf(bio_err, "bytes written: %8ju\n", BIO_number_written(out));
700     }
701  end:
702     ERR_print_errors(bio_err);
703     OPENSSL_free(strbuf);
704     OPENSSL_free(buff);
705     BIO_free(in);
706     BIO_free_all(out);
707     BIO_free(benc);
708     BIO_free(b64);
709     EVP_MD_free(dgst);
710     EVP_CIPHER_free(cipher);
711 #ifndef OPENSSL_NO_ZLIB
712     BIO_free(bzl);
713 #endif
714     BIO_free(bbrot);
715     BIO_free(bzstd);
716     release_engine(e);
717     OPENSSL_free(pass);
718     return ret;
719 }
720
721 static void show_ciphers(const OBJ_NAME *name, void *arg)
722 {
723     struct doall_enc_ciphers *dec = (struct doall_enc_ciphers *)arg;
724     const EVP_CIPHER *cipher;
725
726     if (!islower((unsigned char)*name->name))
727         return;
728
729     /* Filter out ciphers that we cannot use */
730     cipher = EVP_get_cipherbyname(name->name);
731     if (cipher == NULL
732             || (EVP_CIPHER_get_flags(cipher) & EVP_CIPH_FLAG_AEAD_CIPHER) != 0
733             || EVP_CIPHER_get_mode(cipher) == EVP_CIPH_XTS_MODE)
734         return;
735
736     BIO_printf(dec->bio, "-%-25s", name->name);
737     if (++dec->n == 3) {
738         BIO_printf(dec->bio, "\n");
739         dec->n = 0;
740     } else
741         BIO_printf(dec->bio, " ");
742 }
743
744 static int set_hex(const char *in, unsigned char *out, int size)
745 {
746     int i, n;
747     unsigned char j;
748
749     i = size * 2;
750     n = strlen(in);
751     if (n > i) {
752         BIO_printf(bio_err, "hex string is too long, ignoring excess\n");
753         n = i; /* ignore exceeding part */
754     } else if (n < i) {
755         BIO_printf(bio_err, "hex string is too short, padding with zero bytes to length\n");
756     }
757
758     memset(out, 0, size);
759     for (i = 0; i < n; i++) {
760         j = (unsigned char)*in++;
761         if (!isxdigit(j)) {
762             BIO_printf(bio_err, "non-hex digit\n");
763             return 0;
764         }
765         j = (unsigned char)OPENSSL_hexchar2int(j);
766         if (i & 1)
767             out[i / 2] |= j;
768         else
769             out[i / 2] = (j << 4);
770     }
771     return 1;
772 }