Home
last modified time | relevance | path

Searched refs:mbedtls_ecp_mul (Results 1 – 8 of 8) sorted by relevance

/third_party/mbedtls/tests/suites/
Dtest_suite_ecp.function354 TEST_ASSERT(mbedtls_ecp_mul(&grp, &R, &dA, &grp.G,
359 TEST_ASSERT(mbedtls_ecp_mul(&grp, &R, &dB, &R,
365 TEST_ASSERT(mbedtls_ecp_mul(&grp, &R, &dB, &grp.G,
370 TEST_ASSERT(mbedtls_ecp_mul(&grp, &R, &dA, &R,
408 TEST_ASSERT(mbedtls_ecp_mul(&grp, &R, &dA, &grp.G,
413 TEST_ASSERT(mbedtls_ecp_mul(&grp, &R, &dB, &R,
418 TEST_ASSERT(mbedtls_ecp_mul(&grp, &R, &dB, &grp.G,
423 TEST_ASSERT(mbedtls_ecp_mul(&grp, &R, &dA, &R,
468 TEST_ASSERT(mbedtls_ecp_mul(&grp, &R, &n, &P,
501 TEST_ASSERT(mbedtls_ecp_mul(&grp, &Q, &d, &grp.G,
Dtest_suite_ecdh.function30 TEST_ASSERT(mbedtls_ecp_mul(&ecp->grp, &ecp->Q, &ecp->d,
/third_party/mbedtls/library/
Decjpake.c723 MBEDTLS_MPI_CHK(mbedtls_ecp_mul(&ctx->grp, &Xm, &xm, &G, f_rng, p_rng)); in mbedtls_ecjpake_write_round_two()
792 MBEDTLS_MPI_CHK(mbedtls_ecp_mul(&ctx->grp, K, &ctx->xm2, K, in mbedtls_ecjpake_derive_k()
1053 MBEDTLS_MPI_CHK(mbedtls_ecp_mul(&ctx->grp, &ctx->Xm1, &ctx->xm1, in ecjpake_test_load()
1055 MBEDTLS_MPI_CHK(mbedtls_ecp_mul(&ctx->grp, &ctx->Xm2, &ctx->xm2, in ecjpake_test_load()
Dpsa_crypto_ecp.c217 mbedtls_ecp_mul(&ecp->grp, &ecp->Q, &ecp->d, &ecp->grp.G, in mbedtls_psa_ecp_export_key()
413 ret = mbedtls_ecp_mul(&ecp->grp, &ecp->Q, in mbedtls_psa_ecp_load_public_part()
Decp.c2720 int mbedtls_ecp_mul(mbedtls_ecp_group *grp, mbedtls_ecp_point *R, in mbedtls_ecp_mul() function
3173 MBEDTLS_MPI_CHK(mbedtls_ecp_mul(grp, Q, d, G, f_rng, p_rng)); in mbedtls_ecp_gen_keypair_base()
3345 MBEDTLS_MPI_CHK(mbedtls_ecp_mul(&grp, &Q, &prv->d, &prv->grp.G, f_rng, p_rng)); in mbedtls_ecp_check_pub_priv()
3461 MBEDTLS_MPI_CHK(mbedtls_ecp_mul(grp, R, m, P, self_test_rng, NULL)); in self_test_point()
3473 MBEDTLS_MPI_CHK(mbedtls_ecp_mul(grp, R, m, P, self_test_rng, NULL)); in self_test_point()
3551 MBEDTLS_MPI_CHK(mbedtls_ecp_mul(&grp, &P, &m, &grp.G, self_test_rng, NULL)); in mbedtls_ecp_self_test()
Dpkparse.c979 (ret = mbedtls_ecp_mul(&eck->grp, &eck->Q, &eck->d, &eck->grp.G, in pk_parse_key_sec1_der()
/third_party/mbedtls/include/mbedtls/
Decp.h963 int mbedtls_ecp_mul(mbedtls_ecp_group *grp, mbedtls_ecp_point *R,
/third_party/mbedtls/
DChangeLog1776 mbedtls_ecp_mul() / mbedtls_ecp_mul_restartable() when called with a NULL
2840 * Add initial support for Curve448 (RFC 7748). Only mbedtls_ecp_mul() and