1 2 3 4 5 6
/// Maximum cipher key length supported pub const MAX_KEY_LEN: usize = 32; /// Maximum cipher tag length supported pub const MAX_TAG_LEN: usize = 16; /// Maximum Noise message length pub const MAX_MESSAGE_LEN: usize = 65535;