curve.go 194 Bytes
Newer Older
1 2
package secp256k1

3
import "github.com/ethereum/go-ethereum/crypto/secp256k1"
4 5

// S256 returns a BitCurve which implements secp256k1.
6 7
func S256() *secp256k1.BitCurve {
	return secp256k1.S256()
8
}