Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 148 for resumption (0.54 sec)

  1. src/crypto/tls/common.go

    // by a client to resume a TLS session with a given server. ClientSessionCache
    // implementations should expect to be called concurrently from different
    // goroutines. Up to TLS 1.2, only ticket-based resumption is supported, not
    // SessionID-based resumption. In TLS 1.3 they were merged into PSK modes, which
    // are supported via this interface.
    type ClientSessionCache interface {
    	// Get searches for a ClientSessionState associated with the given key.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/crypto/tls/conn.go

    	// connection so far. If renegotiation is disabled then this is either
    	// zero or one.
    	handshakes       int
    	extMasterSecret  bool
    	didResume        bool // whether this connection was a session resumption
    	didHRR           bool // whether a HelloRetryRequest was sent/received
    	cipherSuite      uint16
    	curveID          CurveID
    	ocspResponse     []byte   // stapled OCSP response
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    			if !ok {
    				return
    			}
    			// Don't dispatch bookmarks coming from the storage layer.
    			// They can be very frequent (even to the level of subseconds)
    			// to allow efficient watch resumption on kube-apiserver restarts,
    			// and propagating them down may overload the whole system.
    			//
    			// TODO: If at some point we decide the performance and scalability
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  9. platforms/jvm/jvm-services/src/main/java/org/gradle/api/attributes/java/TargetJvmEnvironment.java

     * This attribute can be used by libraries to indicate that a certain variant is better suited for
     * a certain JVM environment. It does however NOT strictly require environments to match, as the
     * general assumption is that Java libraries can also run on environments they are not optimized for.
     *
     * @since 7.0
     */
    public interface TargetJvmEnvironment extends Named {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 19:44:06 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/PreferJavaRuntimeVariant.java

     * of the published library.
     * The following disambiguation rule encodes this assumption for the case where a java library is published
     * with variants using Gradle module metadata. This will allow us to migrate to consuming the new module
     * metadata format by default without breaking a bunch of consumers that depend on this assumption,
     * declaring no preference for a particular variant.
     */
    @ServiceScope(Scope.Global.class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 5.1K bytes
    - Viewed (0)
Back to top