phayes / fdh-rs

Full Domain Hash library for rust
Apache License 2.0
3 stars 3 forks source link

Use generics instead of u8 #1

Open phayes opened 5 years ago

phayes commented 5 years ago

Right now we use u8 for the IV.

It would be nice to make this generic over u8, u16, u32, u64, u128, and if std is enabled, BigUint as well.

This will require either Const Generics, or using the GenericArray crate to go from any integer to an array of [u8; N] to append to the inner hash.