//! Internal constants for the Ed25519 implementation.
/// Ed25519 secret key length in bytes.
pub const SECRET_KEY_LENGTH: usize = 32;
/// Ed25519 public key length in bytes.
pub const PUBLIC_KEY_LENGTH: usize = 32;
/// Ed25519 signature length in bytes.
pub const SIGNATURE_LENGTH: usize = 64;
/// Internal field element limb count for the 5x51 radix layout.
pub const FIELD_LIMBS: usize = 5;
/// Internal scalar limb count for the 4x64 layout.
pub const SCALAR_LIMBS: usize = 4;