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

/freebsd-10-stable/crypto/openssl/ssl/
H A Dssl_lib.c3164 int SSL_CTX_use_psk_identity_hint(SSL_CTX *ctx, const char *identity_hint) argument
3166 if (identity_hint != NULL && strlen(identity_hint) > PSK_MAX_IDENTITY_LEN) {
3173 if (identity_hint != NULL) {
3174 ctx->psk_identity_hint = BUF_strdup(identity_hint);
3182 int SSL_use_psk_identity_hint(SSL *s, const char *identity_hint) argument
3190 if (identity_hint != NULL && strlen(identity_hint) > PSK_MAX_IDENTITY_LEN) {
3196 if (identity_hint != NULL) {
3197 s->session->psk_identity_hint = BUF_strdup(identity_hint);
[all...]
H A Dssl.h1225 int SSL_CTX_use_psk_identity_hint(SSL_CTX *ctx, const char *identity_hint);
1226 int SSL_use_psk_identity_hint(SSL *s, const char *identity_hint);

Completed in 139 milliseconds