logo
pub enum NoPadding {}
Expand description

Don’t pad the data. Useful for key wrapping. Padding will fail if the data cannot be fitted into blocks without padding.

use block_padding::{NoPadding, Padding};

let msg = b"test";
let n = msg.len();
let mut buffer = [0xff; 16];
buffer[..n].copy_from_slice(msg);
let padded_msg = NoPadding::pad(&mut buffer, n, 4).unwrap();
assert_eq!(padded_msg, b"test");
assert_eq!(NoPadding::unpad(&padded_msg).unwrap(), msg);
let padded_msg = NoPadding::pad(&mut buffer, n, 2).unwrap();
assert_eq!(padded_msg, b"test");
assert_eq!(NoPadding::unpad(&padded_msg).unwrap(), msg);

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Pads block filled with data up to pos. Read more

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

Unpad given data by truncating it according to the used padding. In case of the malformed padding will return UnpadError Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.