import "github.com/tendermint/tendermint/crypto/ed25519"
const ( PrivKeyName = "tendermint/PrivKeyEd25519" PubKeyName = "tendermint/PubKeyEd25519" // PubKeySize is is the size, in bytes, of public keys as used in this package. PubKeySize = 32 // PrivateKeySize is the size, in bytes, of private keys as used in this package. PrivateKeySize = 64 // Size of an Edwards25519 signature. Namely the size of a compressed // Edwards25519 point, and a field element. Both of which are 32 bytes. SignatureSize = 64 // SeedSize is the size, in bytes, of private key seeds. These are the // private key representations used by RFC 8032. SeedSize = 32 KeyType = "ed25519" )
PrivKey implements crypto.PrivKey.
GenPrivKey generates a new ed25519 private key. It uses OS randomness in conjunction with the current global random seed in tendermint/libs/common to generate the private key.
GenPrivKeyFromSecret hashes the secret with SHA2, and uses that 32 byte output to create the private key. NOTE: secret should be the output of a KDF like bcrypt, if it's derived from user input.
Bytes returns the privkey byte format.
Equals - you probably don't need to use this. Runs in constant time based on length of the keys.
PubKey gets the corresponding public key from the private key.
Panics if the private key is not initialized.
Sign produces a signature on the provided message. This assumes the privkey is wellformed in the golang format. The first 32 bytes should be random, corresponding to the normal ed25519 private key. The latter 32 bytes should be the compressed public key. If these conditions aren't met, Sign will panic or produce an incorrect signature.
PubKeyEd25519 implements crypto.PubKey for the Ed25519 signature scheme.
Address is the SHA256-20 of the raw pubkey bytes.
Bytes returns the PubKey byte format.
Package ed25519 imports 9 packages (graph) and is imported by 178 packages. Updated 2020-11-17. Refresh now. Tools for package owners.