Searched refs:mbedtls_ecp_mul (Results 1 - 6 of 6) sorted by relevance
/third_party/mbedtls/library/ |
H A D | psa_crypto_ecp.c | 264 mbedtls_ecp_mul(&ecp->grp, &ecp->Q, &ecp->d, &ecp->grp.G, in mbedtls_psa_ecp_export_key() 442 ret = mbedtls_ecp_mul(&ecp->grp, &ecp->Q, in mbedtls_psa_ecp_load_public_part()
|
H A D | pk_ecc.c | 140 return mbedtls_ecp_mul(&eck->grp, &eck->Q, &eck->d, &eck->grp.G, f_rng, p_rng); in mbedtls_pk_ecc_set_pubkey_from_prv()
|
H A D | ecp.c | 997 * This function is in the critial loop for mbedtls_ecp_mul, so pay attention to perf. 2712 int mbedtls_ecp_mul(mbedtls_ecp_group *grp, mbedtls_ecp_point *R, in mbedtls_ecp_mul() function 3169 MBEDTLS_MPI_CHK(mbedtls_ecp_mul(grp, Q, d, G, f_rng, p_rng)); in mbedtls_ecp_gen_keypair_base() 3404 /* mbedtls_ecp_mul() needs a non-const group... */ in mbedtls_ecp_check_pub_priv() 3408 MBEDTLS_MPI_CHK(mbedtls_ecp_mul(&grp, &Q, &prv->d, &prv->grp.G, f_rng, p_rng)); in mbedtls_ecp_check_pub_priv() 3428 return mbedtls_ecp_mul(&key->grp, &key->Q, &key->d, &key->grp.G, in mbedtls_ecp_keypair_calc_public() 3540 MBEDTLS_MPI_CHK(mbedtls_ecp_mul(grp, R, m, P, self_test_rng, NULL)); in self_test_point() 3552 MBEDTLS_MPI_CHK(mbedtls_ecp_mul(grp, R, m, P, self_test_rng, NULL)); in self_test_point() 3632 MBEDTLS_MPI_CHK(mbedtls_ecp_mul(&grp, &P, &m, &grp.G, self_test_rng, NULL)); in mbedtls_ecp_self_test()
|
H A D | ecjpake.c | 680 MBEDTLS_MPI_CHK(mbedtls_ecp_mul(&ctx->grp, &Xm, &xm, &G, f_rng, p_rng)); in mbedtls_ecjpake_write_round_two() 749 MBEDTLS_MPI_CHK(mbedtls_ecp_mul(&ctx->grp, K, &ctx->xm2, K, in mbedtls_ecjpake_derive_k() 1010 MBEDTLS_MPI_CHK(mbedtls_ecp_mul(&ctx->grp, &ctx->Xm1, &ctx->xm1, in ecjpake_test_load() 1012 MBEDTLS_MPI_CHK(mbedtls_ecp_mul(&ctx->grp, &ctx->Xm2, &ctx->xm2, in ecjpake_test_load()
|
/third_party/mbedtls/include/mbedtls/ |
H A D | ecp.h | 186 * odd prime as mbedtls_ecp_mul() requires an odd number, and 502 * multiplication (full run of \c mbedtls_ecp_mul()) is: 967 int mbedtls_ecp_mul(mbedtls_ecp_group *grp, mbedtls_ecp_point *R, 975 * \see mbedtls_ecp_mul() 977 * \note This function does the same as \c mbedtls_ecp_mul(), but 1033 * \note In contrast to mbedtls_ecp_mul(), this function does not
|
/third_party/mbedtls/tests/scripts/ |
H A D | all.sh | 3042 not grep mbedtls_ecp_mul library/ecp.o
|
Completed in 20 milliseconds