Home
last modified time | relevance | path

Searched refs:identity (Results 1 – 5 of 5) sorted by relevance

/mbedtls-latest/library/
Dssl_tls13_client.c706 const unsigned char **identity, in ssl_tls13_ticket_get_identity() argument
716 *identity = session->ticket; in ssl_tls13_ticket_get_identity()
745 const unsigned char **identity, in ssl_tls13_psk_get_identity() argument
754 *identity = ssl->conf->psk_identity; in ssl_tls13_psk_get_identity()
796 const unsigned char *identity, in ssl_tls13_write_identity() argument
812 memcpy(buf + 2, identity, identity_len); in ssl_tls13_write_identity()
902 const unsigned char *identity; in mbedtls_ssl_tls13_write_identities_of_pre_shared_key_ext() local
930 ssl, &hash_alg, &identity, &identity_len) == 0) { in mbedtls_ssl_tls13_write_identities_of_pre_shared_key_ext()
943 identity, identity_len, in mbedtls_ssl_tls13_write_identities_of_pre_shared_key_ext()
947 ret = ssl_tls13_write_identity(ssl, p, end, identity, identity_len, in mbedtls_ssl_tls13_write_identities_of_pre_shared_key_ext()
[all …]
Dssl_tls13_server.c185 const unsigned char *identity, in ssl_tls13_offered_psks_check_identity_match_ticket() argument
217 memcpy(ticket_buffer, identity, identity_len); in ssl_tls13_offered_psks_check_identity_match_ticket()
332 const unsigned char *identity, in ssl_tls13_offered_psks_check_identity_match() argument
344 MBEDTLS_SSL_DEBUG_BUF(4, "identity", identity, identity_len); in ssl_tls13_offered_psks_check_identity_match()
348 ssl, identity, identity_len, obfuscated_ticket_age, session); in ssl_tls13_offered_psks_check_identity_match()
373 ssl->conf->p_psk, ssl, identity, identity_len) == 0) { in ssl_tls13_offered_psks_check_identity_match()
379 MBEDTLS_SSL_DEBUG_BUF(5, "identity", identity, identity_len); in ssl_tls13_offered_psks_check_identity_match()
384 identity, identity_len) == 0) { in ssl_tls13_offered_psks_check_identity_match()
570 const unsigned char *identity; in ssl_tls13_parse_pre_shared_key_ext() local
584 identity = p_identity_len + 2; in ssl_tls13_parse_pre_shared_key_ext()
[all …]
/mbedtls-latest/tests/suites/
Dtest_suite_ssl.function1990 * Test that a save-load pair is the identity
2175 * Test that a load-save pair is the identity
/mbedtls-latest/docs/architecture/
Dpsa-shared-memory.md74 …. The provisioning application isolates clients by including the client identity in the associated…
/mbedtls-latest/
DChangeLog4535 * Fix memory corruption on client with overlong PSK identity, around