pub fn space_pad(
    message: &mut Vec<u8, Global>,
    block_size: usize
) -> &mut Vec<u8, Global>Notable traits for Vec<u8, A>impl<A> Write for Vec<u8, A> where
    A: Allocator
Expand description

Take a Vec and pad it up to a multiple of block_size, using spaces at the end.