ed25519 package - crypto/ed25519 - Go Packages
Package ed25519 implements the Ed25519 signature algorithm. See https://ed25519.cr.yp.to/.
These functions are also compatible with the “Ed25519” function defined in RFC 8032. However, unlike RFC 8032's formulation, this package's private key representation includes a public key suffix to make multiple signing operations with the same key more efficient. This package refers to the RFC 8032 private key as the “seed”.
Operations involving private keys are implemented using constant-time algorithms.
pub, priv, err := GenerateKey(nil)
if err != nil {
log.Fatal(err)
}
msg := []byte("The quick brown fox jumps over the lazy dog")
sig, err := priv.Sign(nil, msg, &Options{
Context: "Example_ed25519ctx",
})
if err != nil {
log.Fatal(err)
}
if err := VerifyWithOptions(pub, msg, sig, &Options{
Context: "Example_ed25519ctx",
}); err != nil {
log.Fatal("invalid signature")
}
- Constants
- func GenerateKey(random io.Reader) (PublicKey, PrivateKey, error)
- func Sign(privateKey PrivateKey, message []byte) []byte
- func Verify(publicKey PublicKey, message, sig []byte) bool
- func VerifyWithOptions(publicKey PublicKey, message, sig []byte, opts *Options) error
- type Options
- type PrivateKey
- type PublicKey
const ( PublicKeySize = 32 PrivateKeySize = 64 SignatureSize = 64 SeedSize = 32 )
This section is empty.
GenerateKey generates a public/private key pair using entropy from random.
If random is nil, a secure random source is used. (Before Go 1.26, a custom crypto/rand.Reader was used if set by the application. That behavior can be restored with GODEBUG=cryptocustomrand=1. This setting will be removed in a future Go release. Instead, use testing/cryptotest.SetGlobalRandom.)
The output of this function is deterministic, and equivalent to reading SeedSize bytes from random, and passing them to NewKeyFromSeed.
func Sign(privateKey PrivateKey, message []byte) []byte
Sign signs the message with privateKey and returns a signature. It will panic if len(privateKey) is not PrivateKeySize.
Verify reports whether sig is a valid signature of message by publicKey. It will panic if len(publicKey) is not PublicKeySize.
The inputs are not considered confidential, and may leak through timing side channels, or if an attacker has control of part of the inputs.
VerifyWithOptions reports whether sig is a valid signature of message by publicKey. A valid signature is indicated by returning a nil error. It will panic if len(publicKey) is not PublicKeySize.
If opts.Hash is crypto.SHA512, the pre-hashed variant Ed25519ph is used and message is expected to be a SHA-512 hash, otherwise opts.Hash must be crypto.Hash(0) and the message must not be hashed, as Ed25519 performs two passes over messages to be signed.
The inputs are not considered confidential, and may leak through timing side channels, or if an attacker has control of part of the inputs.
Options can be used with PrivateKey.Sign or VerifyWithOptions to select Ed25519 variants.
PrivateKey is the type of Ed25519 private keys. It implements crypto.Signer.
func NewKeyFromSeed(seed []byte) PrivateKey
NewKeyFromSeed calculates a private key from a seed. It will panic if len(seed) is not SeedSize. This function is provided for interoperability with RFC 8032. RFC 8032's private keys correspond to seeds in this package.
Equal reports whether priv and x have the same value.
Public returns the PublicKey corresponding to priv.
func (priv PrivateKey) Seed() []byte
Seed returns the private key seed corresponding to priv. It is provided for interoperability with RFC 8032. RFC 8032's private keys correspond to seeds in this package.
Sign signs the given message with priv. rand is ignored and can be nil.
If opts.HashFunc() is crypto.SHA512, the pre-hashed variant Ed25519ph is used and message is expected to be a SHA-512 hash, otherwise opts.HashFunc() must be crypto.Hash(0) and the message must not be hashed, as Ed25519 performs two passes over messages to be signed.
A value of type Options can be used as opts, or crypto.Hash(0) or crypto.SHA512 directly to select plain Ed25519 or Ed25519ph, respectively.
PublicKey is the type of Ed25519 public keys.
Equal reports whether pub and x have the same value.