//! Public Ed25519 encoding sizes.
/// Size of Ed25519 public keys in bytes.
pub const ED25519_PUBLIC_KEY_SIZE: usize = 32;
/// Size of Ed25519 secret seeds in bytes.
pub const ED25519_SECRET_KEY_SIZE: usize = 32;
/// Size of Ed25519 signatures in bytes.
pub const ED25519_SIGNATURE_SIZE: usize = 64;