RustCrypto / KDFs

Collection of Key Derivation Functions written in pure Rust
67 stars 28 forks source link

no_std support #11

Closed tarcieri closed 6 years ago

tarcieri commented 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.

warner commented 6 years ago

I'm working on this in https://github.com/warner/rust-hkdf/tree/no-std