Searched refs:mbedtls_ecp_point (Results 1 – 16 of 16) sorted by relevance
/mbedtls-3.4.0/include/mbedtls/ |
D | ecp.h | 172 typedef struct mbedtls_ecp_point struct 178 mbedtls_ecp_point; typedef 235 mbedtls_ecp_point G; /*!< The generator of the subgroup used. */ 246 int (*MBEDTLS_PRIVATE(t_pre))(mbedtls_ecp_point *, void *); /*!< Unused. */ 247 int (*MBEDTLS_PRIVATE(t_post))(mbedtls_ecp_point *, void *); /*!< Unused. */ 249 mbedtls_ecp_point *MBEDTLS_PRIVATE(T); /*!< Pre-computed points for ecp_mul_comb(). */ 425 mbedtls_ecp_point MBEDTLS_PRIVATE(Q); /*!< our public value */ 582 void mbedtls_ecp_point_init( mbedtls_ecp_point *pt ); 607 void mbedtls_ecp_point_free( mbedtls_ecp_point *pt ); 657 int mbedtls_ecp_copy( mbedtls_ecp_point *P, const mbedtls_ecp_point *Q ); [all …]
|
D | ecdh.h | 104 mbedtls_ecp_point MBEDTLS_PRIVATE(Q); /*!< The public key. */ 105 mbedtls_ecp_point MBEDTLS_PRIVATE(Qp); /*!< The value of the public key of the peer. */ 125 mbedtls_ecp_point MBEDTLS_PRIVATE(Q); /*!< The public key. */ 126 mbedtls_ecp_point MBEDTLS_PRIVATE(Qp); /*!< The value of the public key of the peer. */ 129 mbedtls_ecp_point MBEDTLS_PRIVATE(Vi); /*!< The blinding value. */ 130 mbedtls_ecp_point MBEDTLS_PRIVATE(Vf); /*!< The unblinding value. */ 195 int mbedtls_ecdh_gen_public( mbedtls_ecp_group *grp, mbedtls_mpi *d, mbedtls_ecp_point *Q, 231 const mbedtls_ecp_point *Q, const mbedtls_mpi *d,
|
D | ecjpake.h | 78 mbedtls_ecp_point MBEDTLS_PRIVATE(Xm1); /**< My public key 1 C: X1, S: X3 */ 79 mbedtls_ecp_point MBEDTLS_PRIVATE(Xm2); /**< My public key 2 C: X2, S: X4 */ 80 mbedtls_ecp_point MBEDTLS_PRIVATE(Xp1); /**< Peer public key 1 C: X3, S: X1 */ 81 mbedtls_ecp_point MBEDTLS_PRIVATE(Xp2); /**< Peer public key 2 C: X4, S: X2 */ 82 mbedtls_ecp_point MBEDTLS_PRIVATE(Xp); /**< Peer public key C: Xs, S: Xc */
|
D | ecdsa.h | 253 const mbedtls_ecp_point *Q, const mbedtls_mpi *r,
|
D | debug.h | 253 const char *text, const mbedtls_ecp_point *X );
|
/mbedtls-3.4.0/library/ |
D | ecp_internal_alt.h | 121 mbedtls_ecp_point *pt, int (*f_rng)(void *, unsigned char *, size_t), 166 mbedtls_ecp_point *R, const mbedtls_ecp_point *P, 167 const mbedtls_ecp_point *Q ); 191 mbedtls_ecp_point *R, const mbedtls_ecp_point *P ); 221 mbedtls_ecp_point *T[], size_t t_len ); 239 mbedtls_ecp_point *pt ); 248 mbedtls_ecp_point *R, mbedtls_ecp_point *S, const mbedtls_ecp_point *P, 249 const mbedtls_ecp_point *Q, const mbedtls_mpi *d ); 269 mbedtls_ecp_point *P, int (*f_rng)(void *, unsigned char *, size_t), 285 mbedtls_ecp_point *P );
|
D | ecp.c | 133 mbedtls_ecp_point R; /* current intermediate result */ 135 mbedtls_ecp_point *T; /* table for precomputed points */ 187 mbedtls_ecp_point mP; /* mP value */ 188 mbedtls_ecp_point R; /* R intermediate result */ 504 void mbedtls_ecp_point_init( mbedtls_ecp_point *pt ) in mbedtls_ecp_point_init() 546 void mbedtls_ecp_point_free( mbedtls_ecp_point *pt ) in mbedtls_ecp_point_free() 613 int mbedtls_ecp_copy( mbedtls_ecp_point *P, const mbedtls_ecp_point *Q ) in mbedtls_ecp_copy() 635 int mbedtls_ecp_set_zero( mbedtls_ecp_point *pt ) in mbedtls_ecp_set_zero() 649 int mbedtls_ecp_is_zero( mbedtls_ecp_point *pt ) in mbedtls_ecp_is_zero() 657 int mbedtls_ecp_point_cmp( const mbedtls_ecp_point *P, in mbedtls_ecp_point_cmp() [all …]
|
D | ecjpake.c | 195 const mbedtls_ecp_point *P ) in ecjpake_write_len_point() 228 const mbedtls_ecp_point *G, in ecjpake_hash() 229 const mbedtls_ecp_point *V, in ecjpake_hash() 230 const mbedtls_ecp_point *X, in ecjpake_hash() 277 const mbedtls_ecp_point *G, in ecjpake_zkp_read() 278 const mbedtls_ecp_point *X, in ecjpake_zkp_read() 284 mbedtls_ecp_point V, VV; in ecjpake_zkp_read() 349 const mbedtls_ecp_point *G, in ecjpake_zkp_write() 351 const mbedtls_ecp_point *X, in ecjpake_zkp_write() 359 mbedtls_ecp_point V; in ecjpake_zkp_write() [all …]
|
D | ecdh.c | 67 mbedtls_mpi *d, mbedtls_ecp_point *Q, in ecdh_gen_public_restartable() 92 int mbedtls_ecdh_gen_public( mbedtls_ecp_group *grp, mbedtls_mpi *d, mbedtls_ecp_point *Q, in mbedtls_ecdh_gen_public() 106 const mbedtls_ecp_point *Q, const mbedtls_mpi *d, in ecdh_compute_shared_restartable() 112 mbedtls_ecp_point P; in ecdh_compute_shared_restartable() 137 const mbedtls_ecp_point *Q, const mbedtls_mpi *d, in mbedtls_ecdh_compute_shared()
|
D | ecdsa.c | 250 mbedtls_ecp_point R; in ecdsa_sign_restartable() 499 const mbedtls_ecp_point *Q, in ecdsa_verify_restartable() 505 mbedtls_ecp_point R; in ecdsa_verify_restartable() 607 const mbedtls_ecp_point *Q, in mbedtls_ecdsa_verify()
|
D | ecp_curves.c | 263 static const mbedtls_ecp_point secp192r1_T[16] = { 513 static const mbedtls_ecp_point secp224r1_T[16] = { 763 static const mbedtls_ecp_point secp256r1_T[16] = { 1344 static const mbedtls_ecp_point secp384r1_T[32] = { 2148 static const mbedtls_ecp_point secp521r1_T[32] = { 2376 static const mbedtls_ecp_point secp192k1_T[16] = { 2625 static const mbedtls_ecp_point secp224k1_T[16] = { 2873 static const mbedtls_ecp_point secp256k1_T[16] = { 3130 static const mbedtls_ecp_point brainpoolP256r1_T[16] = { 3720 static const mbedtls_ecp_point brainpoolP384r1_T[32] = { [all …]
|
D | debug.c | 183 const char *text, const mbedtls_ecp_point *X ) in mbedtls_debug_print_ecp()
|
/mbedtls-3.4.0/tests/suites/ |
D | test_suite_ecp.function | 70 mbedtls_ecp_point P; 121 mbedtls_ecp_point P; 166 mbedtls_ecp_point R, P; 254 mbedtls_ecp_point R, Q; 318 mbedtls_ecp_point R; 374 mbedtls_ecp_point R; 429 mbedtls_ecp_point P, nP, R; 477 mbedtls_ecp_point Q; 506 mbedtls_ecp_point P1, P2, R; 583 mbedtls_ecp_point P; [all …]
|
D | test_suite_ecdsa.function | 20 mbedtls_ecp_point Q; 52 mbedtls_ecp_point Q; 90 mbedtls_ecp_point Q;
|
D | test_suite_ecdh.function | 69 mbedtls_ecp_point qA, qB; 110 mbedtls_ecp_point qA, qB;
|
/mbedtls-3.4.0/tests/include/alt-dummy/ |
D | ecp_alt.h | 28 const mbedtls_ecp_point G;
|