Closed tarcieri closed 6 years ago
The current API leans heavily on Vec. It'd be nice if there were (additionally) a no_std friendly API which avoided allocation which contained the core implementation, and then Vec wrappers gated on e.g. a std trait to expose a "friendlier" API.
Vec
std
I'm working on this in https://github.com/warner/rust-hkdf/tree/no-std
The current API leans heavily on
Vec
. It'd be nice if there were (additionally) a no_std friendly API which avoided allocation which contained the core implementation, and thenVec
wrappers gated on e.g. astd
trait to expose a "friendlier" API.