Searched refs:hash_bn (Results 1 – 1 of 1) sorted by relevance
/external/wpa_supplicant_8/src/common/ |
D | dpp_crypto.c | 2043 BIGNUM *hash_bn = NULL; in dpp_pkex_derive_Qi() local 2089 hash_bn = BN_bin2bn(hash, curve->hash_len, NULL); in dpp_pkex_derive_Qi() 2090 if (!hash_bn || in dpp_pkex_derive_Qi() 2091 EC_POINT_mul(group2, Qi, NULL, Pi_point, hash_bn, bnctx) != 1) in dpp_pkex_derive_Qi() 2100 BN_clear_free(hash_bn); in dpp_pkex_derive_Qi() 2126 BIGNUM *hash_bn = NULL; in dpp_pkex_derive_Qr() local 2172 hash_bn = BN_bin2bn(hash, curve->hash_len, NULL); in dpp_pkex_derive_Qr() 2173 if (!hash_bn || in dpp_pkex_derive_Qr() 2174 EC_POINT_mul(group2, Qr, NULL, Pr_point, hash_bn, bnctx) != 1) in dpp_pkex_derive_Qr() 2183 BN_clear_free(hash_bn); in dpp_pkex_derive_Qr()
|