signature_core 0.37.0

Signature core types of the Ockam library.
Documentation
1
2
3
4
5
6
7
8
9
/// The maximum messages allowed without an allocator
pub const MAX_MSGS: usize = 128;
/// The number of bytes in a commitment
pub const COMMITMENT_BYTES: usize = 48;
/// The number of bytes in a challenge or nonce
pub const FIELD_BYTES: usize = 32;

/// Allocate message
pub const ALLOC_MSG: &str = "allocate more space";