pub fn decompose<F: PrimeField>(
message: &F,
chunk_bit_size: u8,
) -> Result<Vec<CHUNK_TYPE>>Expand description
Given an element F, break it into chunks where each chunk is of chunk_bit_size bits. This is
essentially an n-ary representation where n is chunk_bit_size. Returns big-endian representation.