pub trait Ciphertext {
// Required method
fn ciphertext(&self) -> &[u8] ⓘ;
}Expand description
Contains encrypted data.
Provides a common interface for accessing the ciphertext portion of encrypted data structures.
Required Methods§
Sourcefn ciphertext(&self) -> &[u8] ⓘ
fn ciphertext(&self) -> &[u8] ⓘ
Return the encrypted bytes as a slice.