Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 45 for CipherSuites (0.26 sec)

  1. src/crypto/tls/handshake_server_test.go

    			}
    			if len(chi.CipherSuites) != 2+len(defaultCipherSuitesTLS13) {
    				t.Error("the advertised TLS 1.2 suites should be filtered by Config.CipherSuites")
    			}
    			return nil, nil
    		},
    	}
    	clientConfig := &Config{
    		CipherSuites:       []uint16{TLS_RSA_WITH_AES_128_CBC_SHA, TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256},
    		InsecureSkipVerify: true,
    	}
    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/boring_test.go

    			switch sigType {
    			case signaturePKCS1v15, signatureRSAPSS:
    				serverConfig.CipherSuites = []uint16{TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256}
    				serverConfig.Certificates[0].Certificate = [][]byte{testRSA2048Certificate}
    				serverConfig.Certificates[0].PrivateKey = testRSA2048PrivateKey
    			case signatureEd25519:
    				serverConfig.CipherSuites = []uint16{TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  3. src/crypto/tls/handshake_client.go

    		// Reset the list of ciphers when the client only supports TLS 1.3.
    		if len(hello.supportedVersions) == 1 {
    			hello.cipherSuites = nil
    		}
    		if hasAESGCMHardwareSupport {
    			hello.cipherSuites = append(hello.cipherSuites, defaultCipherSuitesTLS13...)
    		} else {
    			hello.cipherSuites = append(hello.cipherSuites, defaultCipherSuitesTLS13NoAES...)
    		}
    
    		curveID := config.curvePreferences(maxVersion)[0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  4. src/crypto/tls/ech.go

    			return nil, errMalformedECHConfig
    		}
    		var cipherSuites cryptobyte.String
    		if !s.ReadUint16LengthPrefixed(&cipherSuites) {
    			return nil, errMalformedECHConfig
    		}
    		for !cipherSuites.Empty() {
    			var c echCipher
    			if !cipherSuites.ReadUint16(&c.KDFID) {
    				return nil, errMalformedECHConfig
    			}
    			if !cipherSuites.ReadUint16(&c.AEADID) {
    				return nil, errMalformedECHConfig
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  5. src/crypto/tls/tls_test.go

    }
    
    func TestCipherSuites(t *testing.T) {
    	var lastID uint16
    	for _, c := range CipherSuites() {
    		if lastID > c.ID {
    			t.Errorf("CipherSuites are not ordered by ID: got %#04x after %#04x", c.ID, lastID)
    		} else {
    			lastID = c.ID
    		}
    
    		if c.Insecure {
    			t.Errorf("%#04x: Insecure CipherSuite returned by CipherSuites()", c.ID)
    		}
    	}
    	lastID = 0
    	for _, c := range InsecureCipherSuites() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/options/serving.go

    			return err
    		}
    	} else if s.ServerCert.GeneratedCert != nil {
    		c.Cert = s.ServerCert.GeneratedCert
    	}
    
    	if len(s.CipherSuites) != 0 {
    		cipherSuites, err := cliflag.TLSCipherSuites(s.CipherSuites)
    		if err != nil {
    			return err
    		}
    		c.CipherSuites = cipherSuites
    	}
    
    	var err error
    	c.MinTLSVersion, err = cliflag.TLSVersion(s.MinTLSVersion)
    	if err != nil {
    		return err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 13:08:18 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  7. doc/next/6-stdlib/99-minor/crypto/tls/66214.md

    3DES cipher suites were removed from the default list used when
    [Config.CipherSuites] is nil. The default can be reverted adding `tls3des=1` to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 178 bytes
    - Viewed (0)
  8. internal/http/transports.go

    	if dialContext == nil {
    		dialContext = DialContextWithLookupHost(s.LookupHost, NewInternodeDialContext(s.DialTimeout, s.TCPOptions))
    	}
    
    	tlsClientConfig := tls.Config{
    		RootCAs:            s.RootCAs,
    		CipherSuites:       s.CipherSuites,
    		CurvePreferences:   s.CurvePreferences,
    		ClientSessionCache: tls.NewLRUClientSessionCache(tlsClientSessionCacheSize),
    	}
    
    	// For more details about various values used here refer
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 6K bytes
    - Viewed (0)
  9. src/crypto/tls/cipher_suites.go

    // ciphersuites and the id requested by the peer.
    func mutualCipherSuite(have []uint16, want uint16) *cipherSuite {
    	for _, id := range have {
    		if id == want {
    			return cipherSuiteByID(id)
    		}
    	}
    	return nil
    }
    
    func cipherSuiteByID(id uint16) *cipherSuite {
    	for _, cipherSuite := range cipherSuites {
    		if cipherSuite.id == id {
    			return cipherSuite
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  10. src/crypto/tls/handshake_server.go

    	c := hs.c
    
    	preferenceOrder := cipherSuitesPreferenceOrder
    	if !hasAESGCMHardwareSupport || !aesgcmPreferred(hs.clientHello.cipherSuites) {
    		preferenceOrder = cipherSuitesPreferenceOrderNoAES
    	}
    
    	configCipherSuites := c.config.cipherSuites()
    	preferenceList := make([]uint16, 0, len(configCipherSuites))
    	for _, suiteID := range preferenceOrder {
    		for _, id := range configCipherSuites {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 27.6K bytes
    - Viewed (0)
Back to top