Home
last modified time | relevance | path

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

/external/boringssl/src/ssl/
Dssl_lib.c2428 int SSL_CTX_use_psk_identity_hint(SSL_CTX *ctx, const char *identity_hint) { in SSL_CTX_use_psk_identity_hint() argument
2429 if (identity_hint != NULL && strlen(identity_hint) > PSK_MAX_IDENTITY_LEN) { in SSL_CTX_use_psk_identity_hint()
2437 if (identity_hint != NULL) { in SSL_CTX_use_psk_identity_hint()
2438 ctx->psk_identity_hint = BUF_strdup(identity_hint); in SSL_CTX_use_psk_identity_hint()
2449 int SSL_use_psk_identity_hint(SSL *s, const char *identity_hint) { in SSL_use_psk_identity_hint() argument
2454 if (identity_hint != NULL && strlen(identity_hint) > PSK_MAX_IDENTITY_LEN) { in SSL_use_psk_identity_hint()
2464 if (identity_hint != NULL) { in SSL_use_psk_identity_hint()
2465 s->psk_identity_hint = BUF_strdup(identity_hint); in SSL_use_psk_identity_hint()
/external/boringssl/src/include/openssl/
Dssl.h1261 const char *identity_hint);
1262 OPENSSL_EXPORT int SSL_use_psk_identity_hint(SSL *s, const char *identity_hint);