Trait ssh_packet::SealingCipher
source · pub trait SealingCipher {
type Err;
// Required method
fn seal(&mut self, payload: Vec<u8>) -> Result<Packet, Self::Err>;
}Expand description
A cipher able to seal a payload to create a Packet.