Searched refs:tmp_scalar (Results 1 – 5 of 5) sorted by relevance
/openssl/crypto/ec/ |
H A D | ecp_nistp224.c | 1414 BIGNUM *x, *y, *z, *tmp_scalar; in ossl_ec_GFp_nistp224_points_mul() local 1433 tmp_scalar = BN_CTX_get(ctx); in ossl_ec_GFp_nistp224_points_mul() 1434 if (tmp_scalar == NULL) in ossl_ec_GFp_nistp224_points_mul() 1509 if (!BN_nnmod(tmp_scalar, p_scalar, group->order, ctx)) { in ossl_ec_GFp_nistp224_points_mul() 1513 num_bytes = BN_bn2lebinpad(tmp_scalar, in ossl_ec_GFp_nistp224_points_mul() 1561 if (!BN_nnmod(tmp_scalar, scalar, group->order, ctx)) { in ossl_ec_GFp_nistp224_points_mul() 1565 num_bytes = BN_bn2lebinpad(tmp_scalar, g_secret, sizeof(g_secret)); in ossl_ec_GFp_nistp224_points_mul()
|
H A D | ecp_nistp384.c | 1707 BIGNUM *x, *y, *z, *tmp_scalar; in ossl_ec_GFp_nistp384_points_mul() local 1727 tmp_scalar = BN_CTX_get(ctx); in ossl_ec_GFp_nistp384_points_mul() 1728 if (tmp_scalar == NULL) in ossl_ec_GFp_nistp384_points_mul() 1806 if (!BN_nnmod(tmp_scalar, p_scalar, group->order, ctx)) { in ossl_ec_GFp_nistp384_points_mul() 1810 num_bytes = BN_bn2lebinpad(tmp_scalar, in ossl_ec_GFp_nistp384_points_mul() 1853 if (!BN_nnmod(tmp_scalar, scalar, group->order, ctx)) { in ossl_ec_GFp_nistp384_points_mul() 1857 num_bytes = BN_bn2lebinpad(tmp_scalar, g_secret, sizeof(g_secret)); in ossl_ec_GFp_nistp384_points_mul()
|
H A D | ecp_nistp521.c | 1916 BIGNUM *x, *y, *z, *tmp_scalar; in ossl_ec_GFp_nistp521_points_mul() local 1936 tmp_scalar = BN_CTX_get(ctx); in ossl_ec_GFp_nistp521_points_mul() 1937 if (tmp_scalar == NULL) in ossl_ec_GFp_nistp521_points_mul() 2015 if (!BN_nnmod(tmp_scalar, p_scalar, group->order, ctx)) { in ossl_ec_GFp_nistp521_points_mul() 2019 num_bytes = BN_bn2lebinpad(tmp_scalar, in ossl_ec_GFp_nistp521_points_mul() 2067 if (!BN_nnmod(tmp_scalar, scalar, group->order, ctx)) { in ossl_ec_GFp_nistp521_points_mul() 2071 num_bytes = BN_bn2lebinpad(tmp_scalar, g_secret, sizeof(g_secret)); in ossl_ec_GFp_nistp521_points_mul()
|
H A D | ecp_nistp256.c | 2026 BIGNUM *x, *y, *z, *tmp_scalar; in ossl_ec_GFp_nistp256_points_mul() local 2047 tmp_scalar = BN_CTX_get(ctx); in ossl_ec_GFp_nistp256_points_mul() 2048 if (tmp_scalar == NULL) in ossl_ec_GFp_nistp256_points_mul() 2127 if (!BN_nnmod(tmp_scalar, p_scalar, group->order, ctx)) { in ossl_ec_GFp_nistp256_points_mul() 2131 num_bytes = BN_bn2lebinpad(tmp_scalar, in ossl_ec_GFp_nistp256_points_mul() 2181 if (!BN_nnmod(tmp_scalar, scalar, group->order, ctx)) { in ossl_ec_GFp_nistp256_points_mul() 2185 num_bytes = BN_bn2lebinpad(tmp_scalar, g_secret, sizeof(g_secret)); in ossl_ec_GFp_nistp256_points_mul()
|
H A D | ecp_nistz256.c | 961 BIGNUM *tmp_scalar; in ecp_nistz256_points_mul() local 1018 if ((tmp_scalar = BN_CTX_get(ctx)) == NULL) in ecp_nistz256_points_mul() 1021 if (!BN_nnmod(tmp_scalar, scalar, group->order, ctx)) { in ecp_nistz256_points_mul() 1025 scalar = tmp_scalar; in ecp_nistz256_points_mul()
|
Completed in 36 milliseconds