Searched refs:mbedtls_ecp_copy (Results 1 – 7 of 7) sorted by relevance
/third_party/mbedtls/library/ |
D | ecp.c | 629 int mbedtls_ecp_copy( mbedtls_ecp_point *P, const mbedtls_ecp_point *Q ) in mbedtls_ecp_copy() function 1473 return( mbedtls_ecp_copy( R, Q ) ); in ecp_add_mixed() 1476 return( mbedtls_ecp_copy( R, P ) ); in ecp_add_mixed() 1748 MBEDTLS_MPI_CHK( mbedtls_ecp_copy( &T[0], P ) ); in ecp_precompute_comb() 1765 MBEDTLS_MPI_CHK( mbedtls_ecp_copy( cur, T + ( i >> 1 ) ) ); in ecp_precompute_comb() 2052 MBEDTLS_MPI_CHK( mbedtls_ecp_copy( R, RR ) ); in ecp_mul_comb_after_precomp() 2392 MBEDTLS_MPI_CHK( mbedtls_ecp_copy( &RP, P ) ); in ecp_mul_mxz() 2615 MBEDTLS_MPI_CHK( mbedtls_ecp_copy( R, P ) ); in mbedtls_ecp_mul_shortcuts() 2619 MBEDTLS_MPI_CHK( mbedtls_ecp_copy( R, P ) ); in mbedtls_ecp_mul_shortcuts() 2714 MBEDTLS_MPI_CHK( mbedtls_ecp_copy( R, pR ) ); in mbedtls_ecp_muladd_restartable()
|
D | ecdh.c | 455 return( mbedtls_ecp_copy( &ctx->Qp, &key->Q ) ); in ecdh_get_params_internal() 461 if( ( ret = mbedtls_ecp_copy( &ctx->Q, &key->Q ) ) != 0 || in ecdh_get_params_internal()
|
D | ecdsa.c | 857 ( ret = mbedtls_ecp_copy( &ctx->Q, &key->Q ) ) != 0 ) in mbedtls_ecdsa_from_keypair()
|
/third_party/mbedtls/programs/pkey/ |
D | ecdsa.c | 209 …if( ( ret = mbedtls_ecp_copy( &ctx_verify.MBEDTLS_PRIVATE(Q), &ctx_sign.MBEDTLS_PRIVATE(Q) ) ) != … in main()
|
/third_party/mbedtls/include/mbedtls/ |
D | ecp.h | 657 int mbedtls_ecp_copy( mbedtls_ecp_point *P, const mbedtls_ecp_point *Q );
|
/third_party/mbedtls/programs/test/ |
D | benchmark.c | 1166 CHECK_AND_CONTINUE( mbedtls_ecp_copy( &ecdh.Qp, &ecdh.Q ) ); in main() 1214 CHECK_AND_CONTINUE( mbedtls_ecp_copy( &ecdh.Qp, &ecdh.Q ) ); in main()
|
/third_party/mbedtls/tests/suites/ |
D | test_suite_ecp.function | 164 mbedtls_ecp_copy( &P, &R );
|