# Functions
DecryptKey tries to decrypt the encrypted private key with the given password.
EncryptKey encrypts the private key with the given password using some entropy from the RNG of the OS.
GenerateKey generates a public/private key pair using entropy from random.
NewReader returns a new Reader that reads from r and computes a digest of the read data.
PrivateKeyFromFile reads and decrypts the private key file with the given password.
PublicKeyFromFile reads a new PublicKey from the given file.
Sign signs the given message with the private key.
SignatureFromFile reads a new Signature from the given file.
SignRawBuf - Sign buffer with raw signature.
SignWithComments signs the given message with the private key.
Verify checks whether message is authentic by verifying it with the given public key and signature.
VerifyRawBuf - Verify buffer with raw signature.
# Constants
EdDSA refers to the Ed25519 signature scheme.
HashEdDSA refers to a Ed25519 signature scheme with pre-hashed messages.
No description provided by the author
# Structs
PrivateKey is a minisign private key.
PublicKey is a minisign public key.
Reader is an io.Reader that reads a message while, at the same time, computes its digest.
Signature is a structured representation of a minisign signature.