Trait cipher::BlockSizeUser

source ·
pub trait BlockSizeUser {
    type BlockSize: BlockSizes;

    // Provided method
    fn block_size() -> usize { ... }
}
Expand description

Types which process data in blocks.

Required Associated Types§

source

type BlockSize: BlockSizes

Size of the block in bytes.

Provided Methods§

source

fn block_size() -> usize

Return block size in bytes.

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl<T> BlockSizeUser for &T
where T: BlockSizeUser,

source§

impl<T> BlockSizeUser for &mut T
where T: BlockSizeUser,

Implementors§