CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
rapid7

CoCalc provides the best real-time collaborative environment for Jupyter Notebooks, LaTeX documents, and SageMath, scalable from individual users to large groups and classes!

GitHub Repository: rapid7/metasploit-framework
Path: blob/master/config/openssl.conf
Views: 1904
1
openssl_conf = openssl_init
2
3
[openssl_init]
4
providers = provider_sect
5
ssl_conf = ssl_sect
6
7
[provider_sect]
8
default = default_sect
9
legacy = legacy_sect
10
11
[default_sect]
12
activate = 1
13
14
[legacy_sect]
15
activate = 1
16
17
[ssl_sect]
18
system_default = system_default_sect
19
20
[system_default_sect]
21
MinProtocol = SSLv3
22
CipherString = ALL:@SECLEVEL=0
23
Options = UnsafeLegacyRenegotiation
24
25