Home
last modified time | relevance | path

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

/NextBSD/crypto/openssl/ssl/
HDs3_clnt.c1477 if (i > PSK_MAX_IDENTITY_LEN) { in ssl3_get_key_exchange()
3106 char identity[PSK_MAX_IDENTITY_LEN + 2]; in ssl3_send_client_key_exchange()
3134 identity[PSK_MAX_IDENTITY_LEN + 1] = '\0'; in ssl3_send_client_key_exchange()
3136 if (identity_len > PSK_MAX_IDENTITY_LEN) { in ssl3_send_client_key_exchange()
HDs3_srvr.c2735 char tmp_id[PSK_MAX_IDENTITY_LEN + 1]; in ssl3_get_client_key_exchange()
2744 if (i > PSK_MAX_IDENTITY_LEN) { in ssl3_get_client_key_exchange()
2759 memset(tmp_id + i, 0, PSK_MAX_IDENTITY_LEN + 1 - i); in ssl3_get_client_key_exchange()
2763 OPENSSL_cleanse(tmp_id, PSK_MAX_IDENTITY_LEN + 1); in ssl3_get_client_key_exchange()
HDssl_lib.c3383 if (identity_hint != NULL && strlen(identity_hint) > PSK_MAX_IDENTITY_LEN) { in SSL_CTX_use_psk_identity_hint()
3407 if (identity_hint != NULL && strlen(identity_hint) > PSK_MAX_IDENTITY_LEN) { in SSL_use_psk_identity_hint()
HDssl.h1319 # define PSK_MAX_IDENTITY_LEN 128 macro