pub struct AnsiX923;Expand description
Pad block with zeros except the last byte which will be set to the number bytes.
use block_padding::{AnsiX923, Padding};
use block_padding::array::{Array, typenum::U8};
let msg = b"test";
let pos = msg.len();
let mut block: Array::<u8, U8> = [0xff; 8].into();
block[..pos].copy_from_slice(msg);
AnsiX923::pad(&mut block, pos);
assert_eq!(&block[..], b"test\x00\x00\x00\x04");
let res = AnsiX923::unpad(&block).unwrap();
assert_eq!(res, msg);Trait Implementations§
Source§impl Padding for AnsiX923
impl Padding for AnsiX923
Source§fn raw_pad(block: &mut [u8], pos: usize)
fn raw_pad(block: &mut [u8], pos: usize)
Pads
block filled with data up to pos (i.e the message length
stored in block is equal to pos). Read moreSource§fn pad<BlockSize: ArraySize>(block: &mut Array<u8, BlockSize>, pos: usize)
fn pad<BlockSize: ArraySize>(block: &mut Array<u8, BlockSize>, pos: usize)
Pads
block filled with data up to pos (i.e the message length
stored in block is equal to pos). Read moreSource§fn unpad<BlockSize: ArraySize>(
block: &Array<u8, BlockSize>,
) -> Result<&[u8], Error>
fn unpad<BlockSize: ArraySize>( block: &Array<u8, BlockSize>, ) -> Result<&[u8], Error>
Unpad data in
block. Read moreSource§fn pad_detached<BlockSize: ArraySize>(data: &[u8]) -> PaddedData<'_, BlockSize>
fn pad_detached<BlockSize: ArraySize>(data: &[u8]) -> PaddedData<'_, BlockSize>
Pad message and return padded tail block. Read more
impl Copy for AnsiX923
Auto Trait Implementations§
impl Freeze for AnsiX923
impl RefUnwindSafe for AnsiX923
impl Send for AnsiX923
impl Sync for AnsiX923
impl Unpin for AnsiX923
impl UnwindSafe for AnsiX923
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