Searched refs:identity_hint (Results 1 – 2 of 2) sorted by relevance
5671 int SSL_CTX_use_psk_identity_hint(SSL_CTX *ctx, const char *identity_hint) in SSL_CTX_use_psk_identity_hint() argument5673 if (identity_hint != NULL && strlen(identity_hint) > PSK_MAX_IDENTITY_LEN) { in SSL_CTX_use_psk_identity_hint()5678 if (identity_hint != NULL) { in SSL_CTX_use_psk_identity_hint()5679 ctx->cert->psk_identity_hint = OPENSSL_strdup(identity_hint); in SSL_CTX_use_psk_identity_hint()5687 int SSL_use_psk_identity_hint(SSL *s, const char *identity_hint) in SSL_use_psk_identity_hint() argument5694 if (identity_hint != NULL && strlen(identity_hint) > PSK_MAX_IDENTITY_LEN) { in SSL_use_psk_identity_hint()5699 if (identity_hint != NULL) { in SSL_use_psk_identity_hint()5700 sc->cert->psk_identity_hint = OPENSSL_strdup(identity_hint); in SSL_use_psk_identity_hint()
851 __owur int SSL_CTX_use_psk_identity_hint(SSL_CTX *ctx, const char *identity_hint);852 __owur int SSL_use_psk_identity_hint(SSL *s, const char *identity_hint);
Completed in 35 milliseconds