Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for HRR (0.01 sec)

  1. src/crypto/tls/bogo_shim_test.go

    	_      = flag.Bool("ipv6", false, "")
    
    	echConfigListB64           = flag.String("ech-config-list", "", "")
    	expectECHAccepted          = flag.Bool("expect-ech-accept", false, "")
    	expectHRR                  = flag.Bool("expect-hrr", false, "")
    	expectedECHRetryConfigs    = flag.String("expect-ech-retry-configs", "", "")
    	expectNoECHRetryConfigs    = flag.Bool("expect-no-ech-retry-configs", 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)
  2. src/crypto/tls/handshake_client_tls13.go

    	if hs.c.quic != nil {
    		return nil
    	}
    	if hs.sentDummyCCS {
    		return nil
    	}
    	hs.sentDummyCCS = true
    
    	return hs.c.writeChangeCipherRecord()
    }
    
    // processHelloRetryRequest handles the HRR in hs.serverHello, modifies and
    // resends hs.hello, and reads the new ServerHello into hs.serverHello.
    func (hs *clientHandshakeStateTLS13) processHelloRetryRequest() error {
    	c := hs.c
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  3. src/crypto/tls/tls_test.go

    			if test.expectHRR {
    				if !ss.testingOnlyDidHRR {
    					t.Error("server did not use HRR")
    				}
    				if !cs.testingOnlyDidHRR {
    					t.Error("client did not use HRR")
    				}
    			} else {
    				if ss.testingOnlyDidHRR {
    					t.Error("server used HRR")
    				}
    				if cs.testingOnlyDidHRR {
    					t.Error("client used HRR")
    				}
    			}
    		})
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  4. src/crypto/tls/bogo_config.json

            "NoNullCompression-TLS12": "TODO: first pass, this should be fixed",
            "KeyUpdate-RequestACK": "TODO: first pass, this should be fixed",
            "TLS13-HRR-InvalidCompressionMethod": "TODO: first pass, this should be fixed",
            "InvalidCompressionMethod": "TODO: first pass, this should be fixed",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 15:52:42 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  5. src/crypto/tls/handshake_messages.go

    			}
    		case extensionCookie:
    			if !readUint16LengthPrefixed(&extData, &m.cookie) ||
    				len(m.cookie) == 0 {
    				return false
    			}
    		case extensionKeyShare:
    			// This extension has different formats in SH and HRR, accept either
    			// and let the handshake logic decide. See RFC 8446, Section 4.2.8.
    			if len(extData) == 2 {
    				if !extData.ReadUint16((*uint16)(&m.selectedGroup)) {
    					return false
    				}
    			} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
Back to top