Searched refs:hash_bn (Results 1 – 1 of 1) sorted by relevance
/external/wpa_supplicant_8/src/common/ |
D | dpp.c | 6588 BIGNUM *hash_bn = NULL; in dpp_pkex_derive_Qi() local 6634 hash_bn = BN_bin2bn(hash, curve->hash_len, NULL); in dpp_pkex_derive_Qi() 6635 if (!hash_bn || in dpp_pkex_derive_Qi() 6636 EC_POINT_mul(group2, Qi, NULL, Pi_point, hash_bn, bnctx) != 1) in dpp_pkex_derive_Qi() 6646 BN_clear_free(hash_bn); in dpp_pkex_derive_Qi() 6670 BIGNUM *hash_bn = NULL; in dpp_pkex_derive_Qr() local 6716 hash_bn = BN_bin2bn(hash, curve->hash_len, NULL); in dpp_pkex_derive_Qr() 6717 if (!hash_bn || in dpp_pkex_derive_Qr() 6718 EC_POINT_mul(group2, Qr, NULL, Pr_point, hash_bn, bnctx) != 1) in dpp_pkex_derive_Qr() 6728 BN_clear_free(hash_bn); in dpp_pkex_derive_Qr()
|