Lines Matching defs:identity_hint
4602 int SSL_CTX_use_psk_identity_hint(SSL_CTX *ctx, const char *identity_hint)
4604 if (identity_hint != NULL && strlen(identity_hint) > PSK_MAX_IDENTITY_LEN) {
4609 if (identity_hint != NULL) {
4610 ctx->cert->psk_identity_hint = OPENSSL_strdup(identity_hint);
4618 int SSL_use_psk_identity_hint(SSL *s, const char *identity_hint)
4623 if (identity_hint != NULL && strlen(identity_hint) > PSK_MAX_IDENTITY_LEN) {
4628 if (identity_hint != NULL) {
4629 s->cert->psk_identity_hint = OPENSSL_strdup(identity_hint);