We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7abf6bf commit 8062c4cCopy full SHA for 8062c4c
runtime/bin/security_context.cc
@@ -807,7 +807,7 @@ void FUNCTION_NAME(SecurityContext_Allocate)(Dart_NativeArguments args) {
807
SSLFilter::InitializeLibrary();
808
SSL_CTX* ctx = SSL_CTX_new(TLS_method());
809
SSL_CTX_set_verify(ctx, SSL_VERIFY_PEER, SSLCertContext::CertificateCallback);
810
- SSL_CTX_set_min_proto_version(ctx, TLS1_VERSION);
+ SSL_CTX_set_min_proto_version(ctx, TLS1_2_VERSION);
811
SSL_CTX_set_cipher_list(ctx, "HIGH:MEDIUM");
812
SSLCertContext* context = new SSLCertContext(ctx);
813
Dart_Handle err = SetSecurityContext(args, context);
0 commit comments