CipherText

Type Alias CipherText 

Source
pub type CipherText = CipherText<CT_LEN>;
Expand description

Correctly sized ciphertext specific to the target security parameter set.

Aliased Type§

#[repr(align(8))]
pub struct CipherText(/* private fields */);

Trait Implementations§

Source§

impl SerDes for CipherText

Source§

type ByteArray = [u8; 1088]

The fixed-size byte array type used for serialization
Source§

fn into_bytes(self) -> Self::ByteArray

Produces a byte array of fixed-size specific to the struct being serialized. Read more
Source§

fn try_from_bytes(ct: Self::ByteArray) -> Result<Self, &'static str>

Consumes a byte array of fixed-size specific to the struct being deserialized; performs validation Read more