Home
last modified time | relevance | path

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

/external/boringssl/src/ssl/
Dssl_lib.cc2361 static int use_psk_identity_hint(char **out, const char *identity_hint) { in use_psk_identity_hint() argument
2362 if (identity_hint != NULL && strlen(identity_hint) > PSK_MAX_IDENTITY_LEN) { in use_psk_identity_hint()
2375 if (identity_hint != NULL && identity_hint[0] != '\0') { in use_psk_identity_hint()
2376 *out = BUF_strdup(identity_hint); in use_psk_identity_hint()
2385 int SSL_CTX_use_psk_identity_hint(SSL_CTX *ctx, const char *identity_hint) { in SSL_CTX_use_psk_identity_hint() argument
2386 return use_psk_identity_hint(&ctx->psk_identity_hint, identity_hint); in SSL_CTX_use_psk_identity_hint()
2389 int SSL_use_psk_identity_hint(SSL *ssl, const char *identity_hint) { in SSL_use_psk_identity_hint() argument
2390 return use_psk_identity_hint(&ssl->psk_identity_hint, identity_hint); in SSL_use_psk_identity_hint()
/external/boringssl/src/include/openssl/
Dssl.h2924 const char *identity_hint);
2930 const char *identity_hint);