Home
last modified time | relevance | path

Searched refs:identity_hint (Results 1 – 2 of 2) sorted by relevance

/openssl/ssl/
H A Dssl_lib.c5191 int SSL_CTX_use_psk_identity_hint(SSL_CTX *ctx, const char *identity_hint) in SSL_CTX_use_psk_identity_hint() argument
5193 if (identity_hint != NULL && strlen(identity_hint) > PSK_MAX_IDENTITY_LEN) { in SSL_CTX_use_psk_identity_hint()
5198 if (identity_hint != NULL) { in SSL_CTX_use_psk_identity_hint()
5199 ctx->cert->psk_identity_hint = OPENSSL_strdup(identity_hint); in SSL_CTX_use_psk_identity_hint()
5207 int SSL_use_psk_identity_hint(SSL *s, const char *identity_hint) in SSL_use_psk_identity_hint() argument
5214 if (identity_hint != NULL && strlen(identity_hint) > PSK_MAX_IDENTITY_LEN) { in SSL_use_psk_identity_hint()
5219 if (identity_hint != NULL) { in SSL_use_psk_identity_hint()
5220 sc->cert->psk_identity_hint = OPENSSL_strdup(identity_hint); in SSL_use_psk_identity_hint()
/openssl/include/openssl/
H A Dssl.h.in834 __owur int SSL_CTX_use_psk_identity_hint(SSL_CTX *ctx, const char *identity_hint);
835 __owur int SSL_use_psk_identity_hint(SSL *s, const char *identity_hint);

Completed in 34 milliseconds