Home
last modified time | relevance | path

Searched refs:role (Results 1 – 15 of 15) sorted by relevance

/mbedtls-latest/library/
Dpsa_crypto_pake.c135 operation->role, in psa_pake_ecjpake_setup()
242 operation->role = MBEDTLS_ECJPAKE_CLIENT; in mbedtls_psa_pake_setup()
246 operation->role = MBEDTLS_ECJPAKE_SERVER; in mbedtls_psa_pake_setup()
348 operation->role == MBEDTLS_ECJPAKE_SERVER) { in mbedtls_psa_pake_output_internal()
439 operation->role == MBEDTLS_ECJPAKE_CLIENT) { in mbedtls_psa_pake_input_internal()
556 operation->role = MBEDTLS_ECJPAKE_NONE; in mbedtls_psa_pake_abort()
Decjpake.c33 #define ID_MINE (ecjpake_id[ctx->role])
34 #define ID_PEER (ecjpake_id[1 - ctx->role])
94 mbedtls_ecjpake_role role, in mbedtls_ecjpake_setup() argument
102 if (role != MBEDTLS_ECJPAKE_CLIENT && role != MBEDTLS_ECJPAKE_SERVER) { in mbedtls_ecjpake_setup()
106 ctx->role = role; in mbedtls_ecjpake_setup()
594 if (ctx->role == MBEDTLS_ECJPAKE_CLIENT) { in mbedtls_ecjpake_read_round_two()
690 if (ctx->role == MBEDTLS_ECJPAKE_SERVER) { in mbedtls_ecjpake_write_round_two()
Dssl_tls.c2070 mbedtls_ecjpake_role role; in mbedtls_ssl_set_hs_ecjpake_password() local
2082 role = MBEDTLS_ECJPAKE_SERVER; in mbedtls_ssl_set_hs_ecjpake_password()
2084 role = MBEDTLS_ECJPAKE_CLIENT; in mbedtls_ssl_set_hs_ecjpake_password()
2088 role, in mbedtls_ssl_set_hs_ecjpake_password()
Dpsa_crypto.c8674 psa_pake_role_t role) argument
8686 if (role == PSA_PAKE_ROLE_NONE) {
8693 (void) role;
/mbedtls-latest/include/mbedtls/
Decjpake.h63 mbedtls_ecjpake_role MBEDTLS_PRIVATE(role); /**< Are we client or server? */
112 mbedtls_ecjpake_role role,
/mbedtls-latest/tests/suites/
Dtest_suite_ecjpake.function164 void read_round_one(int role, data_t *msg, int ref_ret)
174 TEST_ASSERT(mbedtls_ecjpake_setup(&ctx, role,
Dtest_suite_ecjpake.data16 ECJPAKE round one: role mismatch
Dtest_suite_psa_crypto_pake.data29 PSA PAKE: ecjpake setup role
Dtest_suite_psa_crypto.function10510 psa_pake_role_t role = role_arg;
10549 TEST_EQUAL(psa_pake_set_role(&operation, role),
10574 status = psa_pake_set_role(&operation, role);
/mbedtls-latest/include/psa/
Dcrypto_builtin_composites.h197 mbedtls_ecjpake_role MBEDTLS_PRIVATE(role);
Dcrypto_extra.h1422 psa_pake_role_t role);
/mbedtls-latest/docs/architecture/psa-migration/
Dstrategy.md376 The role of the PK/Cipher/MD APIs in user migration
/mbedtls-latest/docs/proposed/
Dpsa-driver-interface.md592 … inputs are available for drivers via get-data functions for `password`, `role` and `cipher_suite`.
/mbedtls-latest/docs/
Dpsa-transition.md663 The PSA key identifier tends to play the same role as an `mbedtls_pk_context`, `mbedtls_rsa_context…
/mbedtls-latest/
DChangeLog942 instead of role in PAKE PSA Crypto API as described in the specification.