Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for chachaQR (0.1 sec)

  1. src/crypto/tls/handshake_server_test.go

    			clientCiphers: []uint16{
    				TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305,
    				TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,
    				TLS_RSA_WITH_AES_128_CBC_SHA,
    			},
    			serverHasAESGCM: true,
    			expectedCipher:  TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305,
    		},
    		{
    			name: "client prefers AES-GCM, server doesn't have hardware AES (pick ChaCha)",
    			clientCiphers: []uint16{
    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/math/rand/v2/chacha8_test.go

    	"chacha8:\x00\x00\x00\x00\x00\x00\x00\x06ABCDEFGHIJKLMNOPQRSTUVWXYZ123456",
    	"chacha8:\x00\x00\x00\x00\x00\x00\x00\aABCDEFGHIJKLMNOPQRSTUVWXYZ123456",
    	"chacha8:\x00\x00\x00\x00\x00\x00\x00\bABCDEFGHIJKLMNOPQRSTUVWXYZ123456",
    	"chacha8:\x00\x00\x00\x00\x00\x00\x00\tABCDEFGHIJKLMNOPQRSTUVWXYZ123456",
    	"chacha8:\x00\x00\x00\x00\x00\x00\x00\nABCDEFGHIJKLMNOPQRSTUVWXYZ123456",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:09:08 UTC 2024
    - 55K bytes
    - Viewed (0)
  3. src/crypto/tls/handshake_client_test.go

    	config := testConfig.Clone()
    	config.CipherSuites = []uint16{TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305}
    
    	test := &clientTest{
    		name:   "ECDHE-RSA-CHACHA20-POLY1305",
    		args:   []string{"-cipher", "ECDHE-RSA-CHACHA20-POLY1305"},
    		config: config,
    	}
    
    	runClientTestTLS12(t, test)
    }
    
    func TestHandshakeClientECDHEECDSAChaCha20(t *testing.T) {
    	config := testConfig.Clone()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  4. src/crypto/tls/tls_test.go

    				return +1
    			}
    			// AES < ChaCha20
    			if strings.Contains(aName, "AES") && strings.Contains(bName, "CHACHA20") {
    				// negative for cipherSuitesPreferenceOrder
    				if i == 0 {
    					return -1
    				} else {
    					return +1
    				}
    			} else if strings.Contains(aName, "CHACHA20") && strings.Contains(bName, "AES") {
    				// negative for cipherSuitesPreferenceOrderNoAES
    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