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