Trait crypto_common::OutputSizeUser 
source · pub trait OutputSizeUser {
    type OutputSize: ArrayLength<u8> + 'static;
    fn output_size() -> usize { ... }
}Expand description
Types which return data with the given size.
Required Associated Types
sourcetype OutputSize: ArrayLength<u8> + 'static
 
type OutputSize: ArrayLength<u8> + 'static
Size of the output in bytes.
Provided Methods
sourcefn output_size() -> usize
 
fn output_size() -> usize
Return output size in bytes.