hash2field/
expand_msg.rs

1/// Trait for types implementing expand_message interface for hash_to_field
2pub trait ExpandMsg<const OUT: usize> {
3    /// Expands `msg` to the required number of bytes in `buf`
4    fn expand_message(msg: &[u8], dst: &[u8]) -> [u8; OUT];
5}