# Functions
FromRawSeed creates a new keypair from the provided raw ED25519 seed.
MustParse is the panic-on-fail version of Parse.
Parse constructs a new KeyPair from the provided string, which should be either an address, or a seed.
Random creates a random full keypair.
# Variables
ErrCannotDecrypt is returned when attempting to decrypt a message when the keypair does not have the secret key available.
ErrCannotSign is returned when attempting to sign a message when the keypair does not have the secret key available.
ErrInvalidKey will be returned by operations when the keypair being used could not be decoded.
ErrInvalidSignature is returned when the signature is invalid, either through malformation or if it does not verify the message against the provided public key.
# Structs
FromAddress represents a keypair to which only the address is know.
No description provided by the author
# Interfaces
KeyPair is the main interface for this package.