Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for barprime (0.43 sec)

  1. src/crypto/internal/edwards25519/field/fe.go

    	correctSignSqrt := check.Equal(u)
    	flippedSignSqrt := check.Equal(uNeg)
    	flippedSignSqrtI := check.Equal(t0.Multiply(uNeg, sqrtM1))
    
    	rPrime := new(Element).Multiply(rr, sqrtM1) // r_prime = SQRT_M1 * r
    	// r = CT_SELECT(r_prime IF flipped_sign_sqrt | flipped_sign_sqrt_i ELSE r)
    	rr.Select(rPrime, rr, flippedSignSqrt|flippedSignSqrtI)
    
    	r.Absolute(rr) // Choose the nonnegative square root.
    	return r, correctSignSqrt | flippedSignSqrt
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config.go

    	errPrime := runProbeCheckAndLog(ctx, 0)
    
    	// if our initial attempt to prime failed, start trying to get to a valid state in the background ASAP
    	// this prevents a slow start when the external healthz checker is configured to ignore the KMS healthz endpoint
    	// since we want to support the plugin starting up async with the API server, this error is not fatal
    	if errPrime != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 41.2K bytes
    - Viewed (0)
Back to top