Home
last modified time | relevance | path

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

/external/boringssl/src/crypto/ecdsa/
Decdsa.c239 EC_POINT *tmp_point = NULL; in ecdsa_sign_setup() local
265 tmp_point = EC_POINT_new(group); in ecdsa_sign_setup()
266 if (tmp_point == NULL) { in ecdsa_sign_setup()
309 if (!EC_POINT_mul(group, tmp_point, k, NULL, NULL, ctx)) { in ecdsa_sign_setup()
313 if (!EC_POINT_get_affine_coordinates_GFp(group, tmp_point, X, NULL, ctx)) { in ecdsa_sign_setup()
347 EC_POINT_free(tmp_point); in ecdsa_sign_setup()
/external/boringssl/src/crypto/ec/
Dwnaf.c684 EC_POINT *tmp_point = NULL, *base = NULL, **var; in ec_wNAF_precompute_mult() local
765 if (!(tmp_point = EC_POINT_new(group)) || !(base = EC_POINT_new(group))) { in ec_wNAF_precompute_mult()
778 if (!EC_POINT_dbl(group, tmp_point, base, ctx)) { in ec_wNAF_precompute_mult()
788 if (!EC_POINT_add(group, *var, tmp_point, *(var - 1), ctx)) { in ec_wNAF_precompute_mult()
802 if (!EC_POINT_dbl(group, base, tmp_point, ctx)) { in ec_wNAF_precompute_mult()
843 EC_POINT_free(tmp_point); in ec_wNAF_precompute_mult()