Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for ECHConfigList (0.25 sec)

  1. doc/next/6-stdlib/99-minor/crypto/tls/63369.md

    This feature can be enabled by setting the [Config.EncryptedClientHelloConfigList]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 296 bytes
    - Viewed (0)
  2. src/crypto/tls/bogo_shim_test.go

    	}
    	if *verifyPeer {
    		cfg.ClientAuth = VerifyClientCertIfGiven
    	}
    
    	if *echConfigListB64 != "" {
    		echConfigList, err := base64.StdEncoding.DecodeString(*echConfigListB64)
    		if err != nil {
    			log.Fatalf("parse ech-config-list err: %s", err)
    		}
    		cfg.EncryptedClientHelloConfigList = echConfigList
    		cfg.MinVersion = VersionTLS13
    	}
    
    	if len(*curves) != 0 {
    		for _, curveStr := range *curves {
    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/ech.go

    	SymmetricCipherSuite []echCipher
    
    	MaxNameLength uint8
    	PublicName    []byte
    	Extensions    []echExtension
    }
    
    var errMalformedECHConfig = errors.New("tls: malformed ECHConfigList")
    
    // parseECHConfigList parses a draft-ietf-tls-esni-18 ECHConfigList, returning a
    // slice of parsed ECHConfigs, in the same order they were parsed, or an error
    // if the list is malformed.
    func parseECHConfigList(data []byte) ([]echConfig, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  4. src/crypto/tls/common.go

    	// Use of KeyLogWriter compromises security and should only be
    	// used for debugging.
    	KeyLogWriter io.Writer
    
    	// EncryptedClientHelloConfigList is a serialized ECHConfigList. If
    	// provided, clients will attempt to connect to servers using Encrypted
    	// Client Hello (ECH) using one of the provided ECHConfigs. Servers
    	// currently ignore this field.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
Back to top