Symbol: get_hash_by_type
crypto/libecc/include/libecc/hash/hash_algs.h
550
ATTRIBUTE_WARN_UNUSED_RET int get_hash_by_type(hash_alg_type hash_type, const hash_mapping **hm);
crypto/libecc/src/examples/hash/hash.c
150
ret = get_hash_by_type(htype, hm); EG(ret, err);
crypto/libecc/src/hash/hmac.c
34
ret = get_hash_by_type(hash_type, &(ctx->hash)); EG(ret, err);
crypto/libecc/src/sig/bip0340.c
1114
ret = get_hash_by_type(hash_type, &hm); EG(ret, err);
crypto/libecc/src/sig/bip0340.c
199
ret = get_hash_by_type(hash_type, &hm); EG(ret, err);
crypto/libecc/src/sig/bip0340.c
776
ret = get_hash_by_type(SHA256, &hm); EG(ret, err);
crypto/libecc/src/sig/bip0340.c
857
ret = get_hash_by_type(hash_type, &hm); EG(ret, err);
crypto/libecc/src/sig/ecfsdsa.c
697
ret = get_hash_by_type(hash_type, &hm); EG(ret, err);
crypto/libecc/src/sig/ecfsdsa.c
917
ret = get_hash_by_type(hash_type, &hm); EG(ret, err);
crypto/libecc/src/sig/eddsa.c
1065
ret = get_hash_by_type(hash_type, &hash); EG(ret, err);
crypto/libecc/src/sig/eddsa.c
1613
ret = get_hash_by_type(hash_type, &h); EG(ret, err);
crypto/libecc/src/sig/eddsa.c
2332
ret = get_hash_by_type(hash_type, &hm); EG(ret, err);
crypto/libecc/src/sig/eddsa.c
2668
ret = get_hash_by_type(hash_type, &hm); EG(ret, err);
crypto/libecc/src/sig/eddsa.c
319
ret = get_hash_by_type(hash_type, &hash); EG(ret, err);
crypto/libecc/src/sig/eddsa.c
587
ret = get_hash_by_type(hash_type, &hash); EG(ret, err);
crypto/libecc/src/sig/sm2.c
154
ret = get_hash_by_type(hash_type, &hm); EG(ret, err);
crypto/libecc/src/tests/ec_self_tests_core.c
1241
ret = get_hash_by_type(cur_test->hash_type, &hash_map); OPENMP_EG(ret, err);