Trait ring_compat::aead::Buffer [−][src]
pub trait Buffer: AsRef<[u8]> + AsMut<[u8]> { fn extend_from_slice(&mut self, other: &[u8]) -> Result<(), Error>; fn truncate(&mut self, len: usize); fn len(&self) -> usize { ... } fn is_empty(&self) -> bool { ... } }
This is supported on crate feature
aead only.Expand description
In-place encryption/decryption byte buffers.
This trait defines the set of methods needed to support in-place operations
on a Vec-like data type.
Required methods
Extend this buffer from the given slice