crypto_common

Trait BlockSizeUser

Source
pub trait BlockSizeUser {
    type BlockSize: ArrayLength<u8> + 'static;

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

Types which process data in blocks.

Required Associated Types§

Source

type BlockSize: ArrayLength<u8> + 'static

Size of the block in bytes.

Provided Methods§

Source

fn block_size() -> usize

Return block size in bytes.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl<T: BlockSizeUser> BlockSizeUser for &T

Source§

impl<T: BlockSizeUser> BlockSizeUser for &mut T

Implementors§