Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for wideBytes (0.14 sec)

  1. src/crypto/internal/edwards25519/scalar.go

    	// We need to use the wide reduction from SetUniformBytes, since clamping
    	// sets the 2^254 bit, making the value higher than the order.
    	var wideBytes [64]byte
    	copy(wideBytes[:], x[:])
    	wideBytes[0] &= 248
    	wideBytes[31] &= 63
    	wideBytes[31] |= 64
    	return s.SetUniformBytes(wideBytes[:])
    }
    
    // Bytes returns the canonical 32-byte little-endian encoding of s.
    func (s *Scalar) Bytes() []byte {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top