Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for VersionSSL30 (0.28 sec)

  1. src/crypto/tls/boring_test.go

    func TestBoringServerProtocolVersion(t *testing.T) {
    	test := func(t *testing.T, name string, v uint16, msg string) {
    		t.Run(name, func(t *testing.T) {
    			serverConfig := testConfig.Clone()
    			serverConfig.MinVersion = VersionSSL30
    			clientConfig := testConfig.Clone()
    			clientConfig.MinVersion = v
    			clientConfig.MaxVersion = v
    			_, _, err := testHandshake(t, clientConfig, serverConfig)
    			if msg == "" {
    				if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. src/crypto/tls/bogo_shim_test.go

    	keyfile  = flag.String("key-file", "", "")
    	certfile = flag.String("cert-file", "", "")
    
    	trustCert = flag.String("trust-cert", "", "")
    
    	minVersion = flag.Int("min-version", VersionSSL30, "")
    	maxVersion = flag.Int("max-version", VersionTLS13, "")
    
    	noTLS13 = flag.Bool("no-tls13", false, "")
    
    	requireAnyClientCertificate = flag.Bool("require-any-client-certificate", false, "")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:25:39 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  3. src/crypto/tls/handshake_server_test.go

    }
    
    var badProtocolVersions = []uint16{0x0000, 0x0005, 0x0100, 0x0105, 0x0200, 0x0205, VersionSSL30}
    
    func TestRejectBadProtocolVersion(t *testing.T) {
    	config := testConfig.Clone()
    	config.MinVersion = VersionSSL30
    	for _, v := range badProtocolVersions {
    		testClientHelloFailure(t, config, &clientHelloMsg{
    			vers:   v,
    			random: make([]byte, 32),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  4. src/crypto/tls/common.go

    	VersionTLS11 = 0x0302
    	VersionTLS12 = 0x0303
    	VersionTLS13 = 0x0304
    
    	// Deprecated: SSLv3 is cryptographically broken, and is no longer
    	// supported by this package. See golang.org/issue/32716.
    	VersionSSL30 = 0x0300
    )
    
    // VersionName returns the name for the provided TLS version number
    // (e.g. "TLS 1.3"), or a fallback representation of the value if the
    // version is not implemented by this package.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"TLS_RSA_WITH_AES_256_CBC_SHA", Const, 1},
    		{"TLS_RSA_WITH_AES_256_GCM_SHA384", Const, 6},
    		{"TLS_RSA_WITH_RC4_128_SHA", Const, 0},
    		{"VerifyClientCertIfGiven", Const, 0},
    		{"VersionName", Func, 21},
    		{"VersionSSL30", Const, 2},
    		{"VersionTLS10", Const, 2},
    		{"VersionTLS11", Const, 2},
    		{"VersionTLS12", Const, 2},
    		{"VersionTLS13", Const, 12},
    		{"X25519", Const, 8},
    		{"X509KeyPair", Func, 0},
    	},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  6. api/go1.16.txt

    pkg compress/flate, type ReadError //deprecated
    pkg compress/flate, type WriteError //deprecated
    pkg crypto/rc4, method (*Cipher) Reset //deprecated
    pkg crypto/tls, const VersionSSL30 //deprecated
    pkg crypto/tls, method (*Config) BuildNameToCertificate //deprecated
    pkg crypto/tls, type Config struct, NameToCertificate //deprecated
    pkg crypto/tls, type Config struct, SessionTicketKey //deprecated
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 02 16:30:41 UTC 2022
    - 479.2K bytes
    - Viewed (0)
  7. api/go1.2.txt

    pkg crypto/tls, const TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 = 49199
    pkg crypto/tls, const TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 uint16
    pkg crypto/tls, const VersionSSL30 = 768
    pkg crypto/tls, const VersionSSL30 ideal-int
    pkg crypto/tls, const VersionTLS10 = 769
    pkg crypto/tls, const VersionTLS10 ideal-int
    pkg crypto/tls, const VersionTLS11 = 770
    pkg crypto/tls, const VersionTLS11 ideal-int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 18 04:36:59 UTC 2013
    - 1.9M bytes
    - Viewed (0)
Back to top