Symbol: hash_name
crypto/krb5/src/lib/crypto/krb/crypto_int.h
120
char hash_name[8];
crypto/krb5/src/lib/crypto/openssl/kdf.c
79
digest = hash_name(hash);
crypto/krb5/src/plugins/preauth/pkinit/pkinit_crypto_openssl.c
2798
char *hash_name = NULL;
crypto/krb5/src/plugins/preauth/pkinit/pkinit_crypto_openssl.c
2863
free(hash_name);
crypto/libecc/include/libecc/hash/hash_algs.h
549
ATTRIBUTE_WARN_UNUSED_RET int get_hash_by_name(const char *hash_name, const hash_mapping **hm);
crypto/libecc/src/hash/hash_algs.c
23
ATTRIBUTE_WARN_UNUSED_RET int get_hash_by_name(const char *hash_name, const hash_mapping **hm)
crypto/libecc/src/hash/hash_algs.c
29
MUST_HAVE(((hash_name != NULL) && (hm != NULL)), ret, err);
crypto/libecc/src/hash/hash_algs.c
36
if ((!are_str_equal(hash_name, exp_name, &check)) && check) {
crypto/libecc/src/tests/ec_utils.c
171
const char *hash_name, hash_alg_type * hash_type)
crypto/libecc/src/tests/ec_utils.c
212
ret = get_hash_by_name(hash_name, &hm);
crypto/libecc/src/tests/ec_utils.c
216
hash_name);
crypto/openssl/ssl/ssl_lib.c
4431
OPENSSL_free(a->sigalg_list[j].hash_name);
crypto/openssl/ssl/ssl_local.h
758
char *hash_name; /* hash algorithm name */
crypto/openssl/ssl/t1_lib.c
2251
cache[cache_idx].hash = si.hash_name ? OBJ_txt2nid(si.hash_name) : NID_undef;
crypto/openssl/ssl/t1_lib.c
491
sinf->hash_name = NULL;
crypto/openssl/ssl/t1_lib.c
495
OPENSSL_free(sinf->hash_name);
crypto/openssl/ssl/t1_lib.c
496
sinf->hash_name = OPENSSL_strdup(p->data);
crypto/openssl/ssl/t1_lib.c
497
if (sinf->hash_name == NULL)
crypto/openssl/ssl/t1_lib.c
624
if (sinf->hash_name != NULL)
crypto/openssl/ssl/t1_lib.c
625
OBJ_create(sinf->hash_oid, sinf->hash_name, NULL);
crypto/openssl/ssl/t1_lib.c
627
(sinf->hash_name != NULL
crypto/openssl/ssl/t1_lib.c
628
? OBJ_txt2nid(sinf->hash_name)
crypto/openssl/ssl/t1_lib.c
649
OPENSSL_free(sinf->hash_name);
crypto/openssl/ssl/t1_lib.c
650
sinf->hash_name = NULL;