Symbol: OPENSSL_hexstr2buf
crypto/openssl/apps/cms.c
597
secret_key = OPENSSL_hexstr2buf(opt_arg(), &ltmp);
crypto/openssl/apps/cms.c
610
secret_keyid = OPENSSL_hexstr2buf(opt_arg(), &ltmp);
crypto/openssl/apps/cms.c
980
digestbin = OPENSSL_hexstr2buf(digesthex, &digestlen);
crypto/openssl/apps/fipsinstall.c
583
buf1 = OPENSSL_hexstr2buf(s, &len);
crypto/openssl/apps/fipsinstall.c
601
buf2 = OPENSSL_hexstr2buf(s, &len);
crypto/openssl/apps/lib/app_x509.c
111
hexid = OPENSSL_hexstr2buf((const char *)vtmp, &hexid_len);
crypto/openssl/apps/s_client.c
172
key = OPENSSL_hexstr2buf(psk_key, &key_len);
crypto/openssl/apps/s_client.c
216
unsigned char *key = OPENSSL_hexstr2buf(psk_key, &key_len);
crypto/openssl/apps/s_server.c
169
key = OPENSSL_hexstr2buf(psk_key, &key_len);
crypto/openssl/apps/s_server.c
220
key = OPENSSL_hexstr2buf(psk_key, &key_len);
crypto/openssl/apps/storeutl.c
228
if ((fingerprint = OPENSSL_hexstr2buf(opt_arg(), &tmplen))
crypto/openssl/apps/ts.c
559
*md_value = OPENSSL_hexstr2buf(digest, &digest_len);
crypto/openssl/apps/ts.c
951
unsigned char *hexstr = OPENSSL_hexstr2buf(digest, &imprint_len);
crypto/openssl/crypto/asn1/asn1_gen.c
701
if ((rdata = OPENSSL_hexstr2buf(str, &rdlen)) == NULL) {
crypto/openssl/crypto/engine/eng_openssl.c
606
key = OPENSSL_hexstr2buf(value, &keylen);
crypto/openssl/crypto/evp/pmeth_lib.c
1604
bin = OPENSSL_hexstr2buf(hex, &binlen);
crypto/openssl/crypto/rsa/rsa_pmeth.c
746
lab = OPENSSL_hexstr2buf(value, &lablen);
crypto/openssl/crypto/x509/v3_conf.c
252
ext_der = OPENSSL_hexstr2buf(value, &ext_len);
crypto/openssl/crypto/x509/v3_pci.c
136
unsigned char *tmp_data2 = OPENSSL_hexstr2buf(valp, &val_len);
crypto/openssl/crypto/x509/v3_skid.c
44
if ((oct->data = OPENSSL_hexstr2buf(str, &length)) == NULL) {
crypto/openssl/include/openssl/crypto.h
147
unsigned char *OPENSSL_hexstr2buf(const char *str, long *buflen);
crypto/openssl/include/openssl/x509v3.h
997
#define string_to_hex OPENSSL_hexstr2buf
crypto/openssl/providers/fips/self_test.c
369
module_checksum = OPENSSL_hexstr2buf(st->module_checksum_data,
crypto/openssl/test/ecdsatest.c
106
|| !TEST_ptr(message = OPENSSL_hexstr2buf(tbs, &msg_len))
crypto/openssl/test/ecdsatest.c
124
|| !TEST_ptr(qbuf = OPENSSL_hexstr2buf(ecdsa_cavs_kats[n].Q, &q_len))
crypto/openssl/test/evp_test.c
575
if (!TEST_ptr(*buf = OPENSSL_hexstr2buf(value, &len))) {
crypto/openssl/test/evp_test.c
633
if (!TEST_ptr(*buf = OPENSSL_hexstr2buf(chunk, &len))) {
crypto/openssl/test/hexstr_test.c
109
if (!TEST_ptr_null(buf = OPENSSL_hexstr2buf(test->in, &len)))
crypto/openssl/test/hexstr_test.c
98
if (!TEST_ptr(buf = OPENSSL_hexstr2buf(test->in, &len))
crypto/openssl/test/sm2_internal_test.c
143
unsigned char *expected = OPENSSL_hexstr2buf(ctext_hex, NULL);
crypto/openssl/test/sm2_internal_test.c
59
if (!TEST_ptr(fake_rand_bytes = OPENSSL_hexstr2buf(hex_bytes, NULL)))
crypto/openssl/test/tls13encryptiontest.c
222
*key = OPENSSL_hexstr2buf(recd->key, NULL);
crypto/openssl/test/tls13encryptiontest.c
223
ivtmp = OPENSSL_hexstr2buf(recd->iv, NULL);
crypto/openssl/test/tls13encryptiontest.c
224
sq = OPENSSL_hexstr2buf(recd->seq, NULL);