From 14f051a0ae3d752c50f419d3583e85fdf4c5bfc9 Mon Sep 17 00:00:00 2001 From: Rich Salz Date: Wed, 13 Apr 2016 15:58:28 -0400 Subject: Make string_to_hex/hex_to_string public Give the API new names, document it. Reviewed-by: Richard Levitte --- test/evp_test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test') diff --git a/test/evp_test.c b/test/evp_test.c index 2e3987cfe0..56c821bd9e 100644 --- a/test/evp_test.c +++ b/test/evp_test.c @@ -199,7 +199,7 @@ static int test_bin(const char *value, unsigned char **buf, size_t *buflen) return 1; } - *buf = string_to_hex(value, &len); + *buf = OPENSSL_hexstr2buf(value, &len); if (!*buf) { fprintf(stderr, "Value=%s\n", value); ERR_print_errors_fp(stderr); -- cgit v1.2.3