Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 82 for resumption (0.49 sec)

  1. src/crypto/tls/quic_test.go

    		t.Fatalf("error during first connection handshake: %v", err)
    	}
    	if cli.conn.ConnectionState().DidResume {
    		t.Errorf("first connection unexpectedly used session resumption")
    	}
    
    	cli2 := newTestQUICClient(t, clientConfig)
    	cli2.conn.SetTransportParameters(nil)
    	srv2 := newTestQUICServer(t, serverConfig)
    	srv2.conn.SetTransportParameters(nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  2. src/runtime/preempt.go

    			// and we've now locked that in.
    			//
    			// TODO: It would be much better if we didn't
    			// leave it in _Gscan, but instead gently
    			// prevented its scheduling until resumption.
    			// Maybe we only use this to bump a suspended
    			// count and the scheduler skips suspended
    			// goroutines? That wouldn't be enough for
    			// {_Gsyscall,_Gwaiting} -> _Grunning. Maybe
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  3. src/crypto/tls/handshake_client.go

    		// Require DHE on resumption as it guarantees forward secrecy against
    		// compromise of the session ticket key. See RFC 8446, Section 4.2.9.
    		hello.pskModes = []uint8{pskModeDHE}
    	}
    
    	// Session resumption is not allowed if renegotiating because
    	// renegotiation is primarily used to allow a client to send a client
    	// certificate, which would be skipped if session resumption occurred.
    	if c.handshakes != 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/bogo_shim_test.go

    				log.Fatal("expected ECH to be accepted, but connection state shows it was not")
    			} else if i > 0 && *onResumeExpectECHAccepted && !cs.ECHAccepted {
    				log.Fatal("expected ECH to be accepted on resumption, but connection state shows it was not")
    			} else if i == 0 && !*expectECHAccepted && cs.ECHAccepted {
    				log.Fatal("did not expect ECH, but it was accepted")
    			}
    
    			if *expectHRR && !cs.testingOnlyDidHRR {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:25:39 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/DefaultMaven.java

                    try {
                        buildResumptionDataRepository.persistResumptionData(rootProject, resumption);
                        result.setCanResume(true);
                    } catch (BuildResumptionPersistenceException e) {
                        logger.warn("Could not persist build resumption data", e);
                    }
                });
            }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  6. src/crypto/tls/handshake_client_tls13.go

    	// Either a PSK or a certificate is always used, but not both.
    	// See RFC 8446, Section 4.1.1.
    	if hs.usingPSK {
    		// Make sure the connection is still being verified whether or not this
    		// is a resumption. Resumptions currently don't reverify certificates so
    		// they don't call verifyServerCertificate. See Issue 31641.
    		if c.config.VerifyConnection != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  7. src/crypto/tls/handshake_server.go

    	} else if !hs.rsaDecryptOk {
    		return false
    	}
    	if hs.c.vers < VersionTLS12 && c.flags&suiteTLS12 != 0 {
    		return false
    	}
    	return true
    }
    
    // checkForResumption reports whether we should perform resumption on this connection.
    func (hs *serverHandshakeState) checkForResumption() error {
    	c := hs.c
    
    	if c.config.SessionTicketsDisabled {
    		return nil
    	}
    
    	var sessionState *SessionState
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  8. src/crypto/tls/bogo_config.json

            "TLS-ECH-Client-Reject-ResumeInnerSession-TLS12": "We won't attempt to negotiate 1.2 if ECH is enabled (we could possibly test this if we had the ability to indicate not to send ECH on resumption?)",
    
            "TLS-ECH-Client-Reject-EarlyDataRejected": "We don't support switiching out ECH configs with this level of granularity",
    
            "TLS-ECH-Client-NoNPN": "We don't support NPN",
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 15:52:42 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/wasm/ssa.go

    			// The runtime needs to inject jumps to
    			// deferreturn calls using the address in
    			// _func.deferreturn. Hence, the call to
    			// deferreturn must itself be a resumption
    			// point so it gets a target PC.
    			s.Prog(wasm.ARESUMEPOINT)
    		}
    		if v.Op == ssa.OpWasmLoweredClosureCall {
    			getValue64(s, v.Args[1])
    			setReg(s, wasm.REG_CTXT)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 17.6K bytes
    - Viewed (0)
  10. src/crypto/tls/handshake_server_tls13.go

    	}
    	// ticket_nonce, which must be unique per connection, is always left at
    	// zero because we only ever send one ticket per connection.
    	psk := suite.expandLabel(c.resumptionSecret, "resumption",
    		nil, suite.hash.Size())
    
    	m := new(newSessionTicketMsgTLS13)
    
    	state := c.sessionState()
    	state.secret = psk
    	state.EarlyData = earlyData
    	state.Extra = extra
    	if c.config.WrapSession != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 30.5K bytes
    - Viewed (0)
Back to top