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