Lines Matching refs:identity_hint
4587 int SSL_CTX_use_psk_identity_hint(SSL_CTX *ctx, const char *identity_hint)
4589 if (identity_hint != NULL && strlen(identity_hint) > PSK_MAX_IDENTITY_LEN) {
4594 if (identity_hint != NULL) {
4595 ctx->cert->psk_identity_hint = OPENSSL_strdup(identity_hint);
4603 int SSL_use_psk_identity_hint(SSL *s, const char *identity_hint)
4608 if (identity_hint != NULL && strlen(identity_hint) > PSK_MAX_IDENTITY_LEN) {
4613 if (identity_hint != NULL) {
4614 s->cert->psk_identity_hint = OPENSSL_strdup(identity_hint);