Searched refs:tmp_point (Results 1 – 2 of 2) sorted by relevance
/external/openssl/crypto/ecdsa/ |
D | ecs_ossl.c | 94 EC_POINT *tmp_point=NULL; in ecdsa_sign_setup() local 124 if ((tmp_point = EC_POINT_new(group)) == NULL) in ecdsa_sign_setup() 156 if (!EC_POINT_mul(group, tmp_point, k, NULL, NULL, ctx)) in ecdsa_sign_setup() 164 tmp_point, X, NULL, ctx)) in ecdsa_sign_setup() 173 tmp_point, X, NULL, ctx)) in ecdsa_sign_setup() 212 if (tmp_point != NULL) in ecdsa_sign_setup() 213 EC_POINT_free(tmp_point); in ecdsa_sign_setup()
|
/external/openssl/crypto/ec/ |
D | ec_mult.c | 768 EC_POINT *tmp_point = NULL, *base = NULL, **var; in ec_wNAF_precompute_mult() local 846 if (!(tmp_point = EC_POINT_new(group)) || !(base = EC_POINT_new(group))) in ec_wNAF_precompute_mult() 860 if (!EC_POINT_dbl(group, tmp_point, base, ctx)) in ec_wNAF_precompute_mult() 869 if (!EC_POINT_add(group, *var, tmp_point, *(var - 1), ctx)) in ec_wNAF_precompute_mult() 884 if (!EC_POINT_dbl(group, base, tmp_point, ctx)) in ec_wNAF_precompute_mult() 926 if (tmp_point) in ec_wNAF_precompute_mult() 927 EC_POINT_free(tmp_point); in ec_wNAF_precompute_mult()
|