1
2
3
4
5
6
7
//! Common constants.

/// Length of an Ed448 signature in bytes.
pub const SIGNATURE_LENGTH: usize = 114;

/// Length of an Ed448 public key in bytes.
pub const PUBLIC_KEY_LENGTH: usize = 57;