Home
last modified time | relevance | path

Searched refs:hash_bn (Results 1 – 1 of 1) sorted by relevance

/external/wpa_supplicant_8/src/common/
Ddpp.c4845 BIGNUM *hash_bn = NULL; in dpp_pkex_derive_Qi() local
4891 hash_bn = BN_bin2bn(hash, curve->hash_len, NULL); in dpp_pkex_derive_Qi()
4892 if (!hash_bn || in dpp_pkex_derive_Qi()
4893 EC_POINT_mul(group2, Qi, NULL, Pi_point, hash_bn, bnctx) != 1) in dpp_pkex_derive_Qi()
4902 BN_clear_free(hash_bn); in dpp_pkex_derive_Qi()
4926 BIGNUM *hash_bn = NULL; in dpp_pkex_derive_Qr() local
4972 hash_bn = BN_bin2bn(hash, curve->hash_len, NULL); in dpp_pkex_derive_Qr()
4973 if (!hash_bn || in dpp_pkex_derive_Qr()
4974 EC_POINT_mul(group2, Qr, NULL, Pr_point, hash_bn, bnctx) != 1) in dpp_pkex_derive_Qr()
4979 BN_clear_free(hash_bn); in dpp_pkex_derive_Qr()