Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for maxModulus (0.12 sec)

  1. src/crypto/internal/bigmod/nat_test.go

    func natBytes(n *Nat) []byte {
    	return n.Bytes(maxModulus(uint(len(n.limbs))))
    }
    
    func natFromBytes(b []byte) *Nat {
    	// Must not use Nat.SetBytes as it's used in TestSetBytes.
    	bb := new(big.Int).SetBytes(b)
    	return NewNat().setBig(bb)
    }
    
    func modulusFromBytes(b []byte) *Modulus {
    	bb := new(big.Int).SetBytes(b)
    	m, _ := NewModulusFromBig(bb)
    	return m
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 12 00:56:20 UTC 2024
    - 11.6K bytes
    - Viewed (0)
Back to top