pub type Signature<'a> = Inner<'a, true, 64, 0, 0>;
Expand description
Type alias for a 64-byte cryptographic signature represented using the
Inner
type with fixed-size configuration.
Aliased Type§
pub enum Signature<'a> {
Ref(&'a mut [u8]),
Owned(Vec<u8>),
}