Struct crypto::blockmodes::NoPadding[][src]

pub struct NoPadding;

No padding mode for ECB and CBC encryption

Trait Implementations

impl Clone for NoPadding
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for NoPadding
[src]

impl PaddingProcessor for NoPadding
[src]

Add padding to the last block of input data If the mode can't handle a non-full block, it signals that error by simply leaving the block as it is which will be detected as an InvalidLength error. Read more

Remove padding from the last block of output data If false is returned, the processing fails Read more

Auto Trait Implementations

impl Send for NoPadding

impl Sync for NoPadding