Searched refs:jpake_client_id (Results 1 – 4 of 4) sorted by relevance
/mbedtls-3.5.0/tests/suites/ |
D | test_suite_psa_crypto_pake.function | 58 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)));
|
D | test_suite_psa_crypto_driver_wrappers.function | 11 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/ |
D | psa_crypto.c | 100 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) {
|
D | ssl_tls.c | 1954 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()
|