Searched refs:jpake_client_id (Results 1 – 4 of 4) sorted by relevance
/mbedtls-latest/library/ |
D | psa_crypto_pake.c | 153 static const uint8_t jpake_client_id[] = { 'c', 'l', 'i', 'e', 'n', 't' }; variable 233 … const size_t user_peer_len = sizeof(jpake_client_id); // client and server have the same length in mbedtls_psa_pake_setup() 240 if (memcmp(user, jpake_client_id, actual_user_len) == 0 && in mbedtls_psa_pake_setup() 245 memcmp(peer, jpake_client_id, actual_peer_len) == 0) { in mbedtls_psa_pake_setup()
|
D | ssl_tls.c | 1951 static const uint8_t jpake_client_id[] = { 'c', 'l', 'i', 'e', 'n', 't' }; variable 1978 peer = jpake_client_id; in mbedtls_ssl_set_hs_ecjpake_password_common() 1979 peer_len = sizeof(jpake_client_id); in mbedtls_ssl_set_hs_ecjpake_password_common() 1981 user = jpake_client_id; in mbedtls_ssl_set_hs_ecjpake_password_common() 1982 user_len = sizeof(jpake_client_id); in mbedtls_ssl_set_hs_ecjpake_password_common()
|
/mbedtls-latest/tests/suites/ |
D | test_suite_psa_crypto_pake.function | 65 static const uint8_t jpake_client_id[] = { 'c', 'l', 'i', 'e', 'n', 't' }; 807 PSA_ASSERT(psa_pake_set_peer(&server, jpake_client_id, sizeof(jpake_client_id))); 808 PSA_ASSERT(psa_pake_set_user(&client, jpake_client_id, sizeof(jpake_client_id))); 885 PSA_ASSERT(psa_pake_set_peer(&server, jpake_client_id, sizeof(jpake_client_id))); 886 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' }; 3064 PSA_ASSERT(psa_pake_set_peer(&operation, jpake_client_id, sizeof(jpake_client_id))); 3260 PSA_ASSERT(psa_pake_set_peer(&server, jpake_client_id, sizeof(jpake_client_id))); 3262 PSA_ASSERT(psa_pake_set_user(&client, jpake_client_id, sizeof(jpake_client_id)));
|