Trait crypto_common::BlockSizeUser
source · [−]pub trait BlockSizeUser {
type BlockSize: ArrayLength<u8> + 'static;
fn block_size() -> usize { ... }
}
Expand description
Types which process data in blocks.
Required Associated Types
type BlockSize: ArrayLength<u8> + 'static
type BlockSize: ArrayLength<u8> + 'static
Size of the block in bytes.
Provided Methods
fn block_size() -> usize
fn block_size() -> usize
Return block size in bytes.