Trait crypto_common::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§
sourcetype BlockSize: ArrayLength<u8> + 'static
 
type BlockSize: ArrayLength<u8> + 'static
Size of the block in bytes.
Provided Methods§
sourcefn block_size() -> usize
 
fn block_size() -> usize
Return block size in bytes.
Object Safety§
This trait is not object safe.