Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 44 of 44 for useIvy (0.13 sec)

  1. src/crypto/tls/handshake_client_tls13.go

    	}
    
    	psk := cipherSuite.expandLabel(c.resumptionSecret, "resumption",
    		msg.nonce, cipherSuite.hash.Size())
    
    	session := c.sessionState()
    	session.secret = psk
    	session.useBy = uint64(c.config.time().Add(lifetime).Unix())
    	session.ageAdd = msg.ageAdd
    	session.EarlyData = c.quic != nil && msg.maxEarlyData == 0xffffffff // RFC 9001, Section 4.6.1
    	session.ticket = msg.label
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/generic.rules

            (Rsh32Ux64 <typ.UInt32> (ZeroExt16to32 x) (Const64 <typ.UInt64> [1])))
          (Const64 <typ.UInt64> [16+umagic16(c).s-2])))
    (Div16u x (Const16 [c])) && umagicOK16(c) && config.RegSize == 4 && config.useAvg =>
      (Trunc32to16
        (Rsh32Ux64 <typ.UInt32>
          (Avg32u
            (Lsh32x64 <typ.UInt32> (ZeroExt16to32 x) (Const64 <typ.UInt64> [16]))
            (Mul32 <typ.UInt32>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  3. src/crypto/tls/handshake_client.go

    			return nil, nil, nil, nil
    		}
    
    		hello.sessionTicket = session.ticket
    		return
    	}
    
    	// Check that the session ticket is not expired.
    	if c.config.time().After(time.Unix(int64(session.useBy), 0)) {
    		c.config.ClientSessionCache.Put(cacheKey, nil)
    		return nil, nil, nil, nil
    	}
    
    	// In TLS 1.3 the KDF hash must match the resumed session. Ensure we
    	// offer at least one cipher suite with that hash.
    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/cmd/compile/internal/ssa/rewritegeneric.go

    	// cond: umagicOK32(c) && config.RegSize == 4 && config.useAvg && config.useHmul
    	// result: (Rsh32Ux64 <typ.UInt32> (Avg32u x (Hmul32u <typ.UInt32> (Const32 <typ.UInt32> [int32(umagic32(c).m)]) x)) (Const64 <typ.UInt64> [umagic32(c).s-1]))
    	for {
    		x := v_0
    		if v_1.Op != OpConst32 {
    			break
    		}
    		c := auxIntToInt32(v_1.AuxInt)
    		if !(umagicOK32(c) && config.RegSize == 4 && config.useAvg && config.useHmul) {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:24:47 UTC 2024
    - 812.2K bytes
    - Viewed (0)
Back to top