Searched refs:tmp_1 (Results 1 – 2 of 2) sorted by relevance
/openssl/crypto/ec/ |
H A D | ec_asn1.c | 313 BIGNUM *tmp_1 = NULL, *tmp_2 = NULL; in ec_asn1_group2curve() local 320 if ((tmp_1 = BN_new()) == NULL || (tmp_2 = BN_new()) == NULL) { in ec_asn1_group2curve() 326 if (!EC_GROUP_get_curve(group, NULL, tmp_1, tmp_2, NULL)) { in ec_asn1_group2curve() 340 if (BN_bn2binpad(tmp_1, a_buf, len) < 0 in ec_asn1_group2curve() 376 BN_free(tmp_1); in ec_asn1_group2curve()
|
H A D | ecp_smpl.c | 254 BIGNUM *a, *b, *order, *tmp_1, *tmp_2; in ossl_ec_GFp_simple_group_check_discriminant() local 268 tmp_1 = BN_CTX_get(ctx); in ossl_ec_GFp_simple_group_check_discriminant() 295 if (!BN_mod_sqr(tmp_1, a, p, ctx)) in ossl_ec_GFp_simple_group_check_discriminant() 297 if (!BN_mod_mul(tmp_2, tmp_1, a, p, ctx)) in ossl_ec_GFp_simple_group_check_discriminant() 299 if (!BN_lshift(tmp_1, tmp_2, 2)) in ossl_ec_GFp_simple_group_check_discriminant() 309 if (!BN_mod_add(a, tmp_1, tmp_2, p, ctx)) in ossl_ec_GFp_simple_group_check_discriminant()
|
Completed in 9 milliseconds