[][src]Enum block_padding::Pkcs7

pub enum Pkcs7 {}

Pad block with bytes with value equal to the number of bytes added.

PKCS#7 described in the RFC 5652.

use block_padding::{Pkcs7, Padding};

let msg = b"test";
let n = msg.len();
let mut buffer = [0xff; 8];
buffer[..n].copy_from_slice(msg);
let padded_msg = Pkcs7::pad(&mut buffer, n, 8).unwrap();
assert_eq!(padded_msg, b"test\x04\x04\x04\x04");
assert_eq!(Pkcs7::unpad(&padded_msg).unwrap(), msg);
let padded_msg = Pkcs7::pad(&mut buffer, n, 2).unwrap();
assert_eq!(padded_msg, b"test\x02\x02");
assert_eq!(Pkcs7::unpad(&padded_msg).unwrap(), msg);
let mut buffer = [0xff; 5];
assert!(Pkcs7::pad(&mut buffer, 4, 2).is_err());
assert!(Pkcs7::unpad(&buffer).is_err());

In addition to conditions stated in the Padding trait documentation, pad_block will return PadError if block.len() > 255, and in case of pad if block_size > 255.

Trait Implementations

impl Padding for Pkcs7[src]

fn pad(
    buf: &mut [u8],
    pos: usize,
    block_size: usize
) -> Result<&mut [u8], PadError>
[src]

Pads message with length pos in the provided buffer. Read more

Auto Trait Implementations

impl Send for Pkcs7

impl Sync for Pkcs7

Blanket Implementations

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> From for T[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]