Home
last modified time | relevance | path

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

/external/boringssl/src/ssl/
Dssl_lib.c2072 int SSL_CTX_use_psk_identity_hint(SSL_CTX *ctx, const char *identity_hint) { in SSL_CTX_use_psk_identity_hint() argument
2073 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() argument
2097 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()
/external/boringssl/src/include/openssl/
Dssl.h2472 const char *identity_hint);
2478 const char *identity_hint);