Enum win_crypto_ng::symmetric::Padding
source · pub enum Padding {
Block,
}
Expand description
Padding to be used together with symmetric algorithms
Variants§
Block
Pad the data to the next block size.
N.B. Data equal in length to the block size will be padded to the next block size.
Trait Implementations§
source§impl PartialEq<Padding> for Padding
impl PartialEq<Padding> for Padding
impl Copy for Padding
impl Eq for Padding
impl StructuralEq for Padding
impl StructuralPartialEq for Padding
Auto Trait Implementations§
impl RefUnwindSafe for Padding
impl Send for Padding
impl Sync for Padding
impl Unpin for Padding
impl UnwindSafe for Padding
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more