Struct block_padding::Iso10126
source · [−]pub struct Iso10126;
Expand description
Pad block with arbitrary bytes ending with value equal to the number of bytes added.
A variation of PKCS#7 that is less strict when decoding.
use block_padding::{Iso10126, Padding};
use generic_array::{GenericArray, typenum::U8};
let msg = b"test";
let pos = msg.len();
let mut block: GenericArray::<u8, U8> = [0xff; 8].into();
block[..pos].copy_from_slice(msg);
Iso10126::pad(&mut block, pos);
assert_eq!(&block[..], b"test\x04\x04\x04\x04");
let res = Iso10126::unpad(&block).unwrap();
assert_eq!(res, msg);
Trait Implementations
sourceimpl<B: ArrayLength<u8>> Padding<B> for Iso10126
impl<B: ArrayLength<u8>> Padding<B> for Iso10126
impl Copy for Iso10126
Auto Trait Implementations
impl RefUnwindSafe for Iso10126
impl Send for Iso10126
impl Sync for Iso10126
impl Unpin for Iso10126
impl UnwindSafe for Iso10126
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more