Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for isReduced (0.08 sec)

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

    var scalarMinusOneBytes = [32]byte{236, 211, 245, 92, 26, 99, 18, 88, 214, 156, 247, 162, 222, 249, 222, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16}
    
    // isReduced returns whether the given scalar in 32-byte little endian encoded
    // form is reduced modulo l.
    func isReduced(s []byte) bool {
    	if len(s) != 32 {
    		return false
    	}
    
    	for i := len(s) - 1; i >= 0; i-- {
    		switch {
    		case s[i] > scalarMinusOneBytes[i]:
    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