diff options
author | Rich Salz <rsalz@openssl.org> | 2016-04-13 21:58:28 +0200 |
---|---|---|
committer | Rich Salz <rsalz@openssl.org> | 2016-04-18 15:02:11 +0200 |
commit | 14f051a0ae3d752c50f419d3583e85fdf4c5bfc9 (patch) | |
tree | 16bb50151db9c67cd1dec3b1d25cc537fd10f874 /apps/enc.c | |
parent | Rename some lowercase API's (diff) | |
download | openssl-14f051a0ae3d752c50f419d3583e85fdf4c5bfc9.tar.xz openssl-14f051a0ae3d752c50f419d3583e85fdf4c5bfc9.zip |
Make string_to_hex/hex_to_string public
Give the API new names, document it.
Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'apps/enc.c')
-rw-r--r-- | apps/enc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/enc.c b/apps/enc.c index 7f25009ba9..9e7d069264 100644 --- a/apps/enc.c +++ b/apps/enc.c @@ -636,7 +636,7 @@ static int set_hex(char *in, unsigned char *out, int size) BIO_printf(bio_err, "non-hex digit\n"); return (0); } - j = (unsigned char)app_hex(j); + j = (unsigned char)OPENSSL_hexchar2int(j); if (i & 1) out[i / 2] |= j; else |