Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 43 of 43 for TLSv13 (0.08 sec)

  1. src/crypto/tls/handshake_server_test.go

    		t.Error("the preference order should not depend on Config.CipherSuites")
    	}
    }
    
    func TestSCTHandshake(t *testing.T) {
    	t.Run("TLSv12", func(t *testing.T) { testSCTHandshake(t, VersionTLS12) })
    	t.Run("TLSv13", func(t *testing.T) { testSCTHandshake(t, VersionTLS13) })
    }
    
    func testSCTHandshake(t *testing.T, version uint16) {
    	expected := [][]byte{[]byte("certificate"), []byte("transparency")}
    	serverConfig := &Config{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  2. src/crypto/tls/handshake_client_test.go

    func runClientTestTLS12(t *testing.T, template *clientTest) {
    	runClientTestForVersion(t, template, "TLSv12", "-tls1_2")
    }
    
    func runClientTestTLS13(t *testing.T, template *clientTest) {
    	runClientTestForVersion(t, template, "TLSv13", "-tls1_3")
    }
    
    func TestHandshakeClientRSARC4(t *testing.T) {
    	test := &clientTest{
    		name: "RSA-RC4",
    		args: []string{"-cipher", "RC4-SHA"},
    	}
    	runClientTestTLS10(t, test)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  3. src/crypto/tls/tls_test.go

    			name := fmt.Sprintf("%sPacket/%dMB", mode, size)
    			b.Run(name, func(b *testing.B) {
    				b.Run("TLSv12", func(b *testing.B) {
    					throughput(b, VersionTLS12, int64(size<<20), mode == "Max")
    				})
    				b.Run("TLSv13", func(b *testing.B) {
    					throughput(b, VersionTLS13, int64(size<<20), mode == "Max")
    				})
    			})
    		}
    	}
    }
    
    type slowConn struct {
    	net.Conn
    	bps int
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
Back to top