//! Ed25519 implementation of the [`Scheme`] trait for `simplex`. //! //! [`Scheme`] is **attributable**: individual signatures can be safely //! presented to some third party as evidence of either liveness or of committing a fault. Certificates //! contain signer indices alongside individual signatures, enabling secure //! per-validator activity tracking and fault detection. use crate::simplex::types::Subject; use commonware_cryptography::impl_certificate_ed25519; impl_certificate_ed25519!(Subject<'a, D>);