Type Alias PubKey

Source
pub type PubKey<'a> = Inner<'a, true, 32, 0, 0>;
Expand description

Type alias for a 32-byte public key represented using the Inner type with fixed-size configuration.

Aliased Type§

#[repr(C)]
pub enum PubKey<'a> { Ref(&'a mut [u8]), Owned(Vec<u8>), }

Variants§

§

Ref(&'a mut [u8])

§

Owned(Vec<u8>)