plugeth-utils/restricted/crypto/bls12381/bls12_381_test.go
2021-09-13 15:12:49 -05:00

14 lines
160 B
Go

package bls12381
import (
"crypto/rand"
"math/big"
)
var fuz = 10
func randScalar(max *big.Int) *big.Int {
a, _ := rand.Int(rand.Reader, max)
return a
}