Searched refs:min_proto_version (Results 1 – 13 of 13) sorted by relevance
/third_party/openssl/test/helpers/ |
D | ssltestlib.c | 722 const SSL_METHOD *cm, int min_proto_version, in create_ssl_ctx_pair() argument 758 && ((min_proto_version > 0 in create_ssl_ctx_pair() 760 min_proto_version))) in create_ssl_ctx_pair() 766 && ((min_proto_version > 0 in create_ssl_ctx_pair() 768 min_proto_version))) in create_ssl_ctx_pair()
|
D | ssltestlib.h | 16 const SSL_METHOD *cm, int min_proto_version,
|
/third_party/openssl/ssl/ |
D | ssl_lib.c | 701 s->min_proto_version = ctx->min_proto_version; in SSL_new() 2438 &s->min_proto_version); in SSL_ctrl() 2440 return s->min_proto_version; in SSL_ctrl() 2442 return ssl_check_allowed_versions(s->min_proto_version, larg) in SSL_ctrl() 2587 &ctx->min_proto_version); in SSL_CTX_ctrl() 2589 return ctx->min_proto_version; in SSL_CTX_ctrl() 2591 return ssl_check_allowed_versions(ctx->min_proto_version, larg) in SSL_CTX_ctrl() 3247 ret->min_proto_version = 0; in SSL_CTX_new_ex() 4102 ret->min_proto_version = s->min_proto_version; in SSL_dup()
|
D | ssl_conf.c | 1051 cctx->min_version = &ssl->min_proto_version; in SSL_CONF_CTX_set_ssl() 1070 cctx->min_version = &ctx->min_proto_version; in SSL_CONF_CTX_set_ssl_ctx()
|
D | ssl_local.h | 972 int min_proto_version; member 1557 int min_proto_version; member
|
/third_party/rust/crates/rust-openssl/openssl/ |
D | CHANGELOG.md | 506 * `SslContextBuilder::max_proto_version` and `SslContextBuilder::min_proto_version` are only present 513 * The `min_proto_version` and `max_proto_version` methods are available when linking against 581 `SslContextBuilder::max_proto_version`, and `SslContextBuilder::min_proto_version`.
|
/third_party/openssl/ssl/statem/ |
D | statem_lib.c | 1497 if ((s->min_proto_version != 0 && in ssl_method_error() 1498 version_cmp(s, version, s->min_proto_version) < 0) || in ssl_method_error()
|
/third_party/nghttp2/src/ |
D | shrpx_config.h | 780 int min_proto_version; member
|
D | shrpx_tls.cc | 967 ssl_ctx, tlsconf.min_proto_version, tlsconf.max_proto_version) != 0) { in create_ssl_context() 1598 ssl_ctx, tlsconf.min_proto_version, tlsconf.max_proto_version) != 0) { in create_ssl_client_context()
|
D | shrpx.cc | 1865 tlsconf.min_proto_version = in fill_default_config() 3643 if (tlsconf.min_proto_version > tlsconf.max_proto_version) { in process_options()
|
D | shrpx_config.cc | 3951 return parse_tls_proto_version(config->tls.min_proto_version, opt, optarg); in parse_config()
|
/third_party/rust/crates/rust-openssl/openssl/src/ssl/test/ |
D | mod.rs | 1132 assert_eq!(client.ctx().min_proto_version(), Some(SslVersion::TLS1_2)); in no_version_overlap()
|
/third_party/rust/crates/rust-openssl/openssl/src/ssl/ |
D | mod.rs | 1165 pub fn min_proto_version(&mut self) -> Option<SslVersion> { in min_proto_version() method
|