Searched refs:identity_hint (Results 1 – 2 of 2) sorted by relevance
2072 int SSL_CTX_use_psk_identity_hint(SSL_CTX *ctx, const char *identity_hint) { in SSL_CTX_use_psk_identity_hint() argument2073 if (identity_hint != NULL && strlen(identity_hint) > PSK_MAX_IDENTITY_LEN) { in SSL_CTX_use_psk_identity_hint()2080 if (identity_hint != NULL) { in SSL_CTX_use_psk_identity_hint()2081 ctx->psk_identity_hint = BUF_strdup(identity_hint); in SSL_CTX_use_psk_identity_hint()2092 int SSL_use_psk_identity_hint(SSL *ssl, const char *identity_hint) { in SSL_use_psk_identity_hint() argument2097 if (identity_hint != NULL && strlen(identity_hint) > PSK_MAX_IDENTITY_LEN) { in SSL_use_psk_identity_hint()2106 if (identity_hint != NULL) { in SSL_use_psk_identity_hint()2107 ssl->psk_identity_hint = BUF_strdup(identity_hint); in SSL_use_psk_identity_hint()
2472 const char *identity_hint);2478 const char *identity_hint);