Home
last modified time | relevance | path

Searched refs:jpake_client_id (Results 1 – 4 of 4) sorted by relevance

/mbedtls-3.5.0/tests/suites/
Dtest_suite_psa_crypto_pake.function58 static const uint8_t jpake_client_id[] = { 'c', 'l', 'i', 'e', 'n', 't' };
758 PSA_ASSERT(psa_pake_set_peer(&server, jpake_client_id, sizeof(jpake_client_id)));
759 PSA_ASSERT(psa_pake_set_user(&client, jpake_client_id, sizeof(jpake_client_id)));
835 PSA_ASSERT(psa_pake_set_peer(&server, jpake_client_id, sizeof(jpake_client_id)));
836 PSA_ASSERT(psa_pake_set_user(&client, jpake_client_id, sizeof(jpake_client_id)));
Dtest_suite_psa_crypto_driver_wrappers.function11 static const uint8_t jpake_client_id[] = { 'c', 'l', 'i', 'e', 'n', 't' };
3044 PSA_ASSERT(psa_pake_set_peer(&operation, jpake_client_id, sizeof(jpake_client_id)));
3238 PSA_ASSERT(psa_pake_set_peer(&server, jpake_client_id, sizeof(jpake_client_id)));
3240 PSA_ASSERT(psa_pake_set_user(&client, jpake_client_id, sizeof(jpake_client_id)));
/mbedtls-3.5.0/library/
Dpsa_crypto.c100 static const uint8_t jpake_client_id[] = { 'c', 'l', 'i', 'e', 'n', 't' }; variable
7444 (user_id_len != sizeof(jpake_client_id) ||
7445 memcmp(user_id, jpake_client_id, user_id_len) != 0)) {
7490 (peer_id_len != sizeof(jpake_client_id) ||
7491 memcmp(peer_id, jpake_client_id, peer_id_len) != 0)) {
7613 if (memcmp(inputs.user, jpake_client_id, inputs.user_len) == 0 &&
7618 memcmp(inputs.peer, jpake_client_id, inputs.peer_len) == 0) {
Dssl_tls.c1954 static const uint8_t jpake_client_id[] = { 'c', 'l', 'i', 'e', 'n', 't' }; variable
1981 peer = jpake_client_id; in mbedtls_ssl_set_hs_ecjpake_password_common()
1982 peer_len = sizeof(jpake_client_id); in mbedtls_ssl_set_hs_ecjpake_password_common()
1984 user = jpake_client_id; in mbedtls_ssl_set_hs_ecjpake_password_common()
1985 user_len = sizeof(jpake_client_id); in mbedtls_ssl_set_hs_ecjpake_password_common()