//! [`KeyEntry`] — a decrypted, in-memory key pair handed back by the store.
use ;
use crateKeyAlgorithm;
/// `algorithm` is carried alongside the key material so signing and
/// verification read it from the key rather than assuming it. The material
/// itself is Ed25519-typed because Ed25519 is the only algorithm this store
/// issues; the struct is `#[non_exhaustive]` so that can change without
/// breaking downstream construction.