Ed25519

A modern elliptic-curve digital signature scheme. Fast, deterministic, and with small keys (32 bytes) and signatures (64 bytes), it's the default for modern SSH, TLS 1.3, and machine-to-machine authentication.

What it is

Ed25519 is a public-key digital signature scheme. A private key signs data; the corresponding public key verifies that the signature came from the holder of the private key and that the data hasn't been altered. It's an EdDSA variant built on the twisted Edwards curve called edwards25519, designed by Daniel Bernstein and collaborators in 2011 and standardized as RFC 8032.

Three numbers tell you almost everything practical about it:

These sizes are roughly an order of magnitude smaller than RSA at comparable security, which is the main reason Ed25519 has spread so quickly through systems where the credential and the signature have to travel everywhere the request goes.

Properties that matter

A handful of design choices set Ed25519 apart from older signature schemes:

Where you encounter it

You've likely already used Ed25519 without thinking about it:

How SikkerKey uses it

Every machine identity in your SikkerKey vault is an Ed25519 keypair. To enroll a machine, you create a one-time bootstrap token in the dashboard and run the install command it gives you. On Linux and macOS that's a curl | sh; on Windows it's a PowerShell one-liner. The script generates the keypair locally on that machine using openssl genpkey -algorithm Ed25519, posts only the public key back to SikkerKey, and writes the private key to a file readable only by that user account.

From then on, the CLI or any SDK on that machine signs each request with the private key. SikkerKey verifies the signature against the public key on file; if it doesn't match, the request is rejected before anything is decrypted. There's no shared API token to leak in logs, copy off a laptop, or replay from another network.

The full request format and replay-protection rules are covered under signed requests.

See also

SikkerKey is the secrets manager built around the patterns in this glossary. Encrypted vault, machine identity over signed requests, dynamic secrets — set up in minutes.

Start for Free