Searched refs:identity_hint (Results 1 – 3 of 3) sorted by relevance
3101 int SSL_CTX_use_psk_identity_hint(SSL_CTX *ctx, const char *identity_hint) in SSL_CTX_use_psk_identity_hint() argument3103 if (identity_hint != NULL && strlen(identity_hint) > PSK_MAX_IDENTITY_LEN) in SSL_CTX_use_psk_identity_hint()3110 if (identity_hint != NULL) in SSL_CTX_use_psk_identity_hint()3112 ctx->psk_identity_hint = BUF_strdup(identity_hint); in SSL_CTX_use_psk_identity_hint()3121 int SSL_use_psk_identity_hint(SSL *s, const char *identity_hint) in SSL_use_psk_identity_hint() argument3129 if (identity_hint != NULL && strlen(identity_hint) > PSK_MAX_IDENTITY_LEN) in SSL_use_psk_identity_hint()3136 if (identity_hint != NULL) in SSL_use_psk_identity_hint()3138 s->session->psk_identity_hint = BUF_strdup(identity_hint); in SSL_use_psk_identity_hint()
994 int SSL_CTX_use_psk_identity_hint(SSL_CTX *ctx, const char *identity_hint);995 int SSL_use_psk_identity_hint(SSL *s, const char *identity_hint);