Versions in this module Expand all Collapse all v0 v0.9.9 Oct 22, 2019 Changes in this version + const PrivateKeySize + const PublicKeySize + const SeedSize + const SignatureSize + func GenerateKey(rand io.Reader) (PublicKey, PrivateKey, error) + func Sign(privateKey PrivateKey, message []byte) []byte + func Verify(publicKey PublicKey, message, sig []byte) bool + type PrivateKey []byte + func NewKeyFromSeed(seed []byte) PrivateKey + func (priv PrivateKey) Public() crypto.PublicKey + func (priv PrivateKey) Seed() []byte + func (priv PrivateKey) Sign(rand io.Reader, message []byte, opts crypto.SignerOpts) (signature []byte, err error) + type PublicKey []byte