We just bumped all of the RustCrypto crates to generic-array v0.14, which adds some nice features:
RustCrypto/traits#95
It'd be great if heapless got updated too so we could share a single version of generic-array (which hasn't happened so far as the RustCrypto crates were previously stuck on v0.12).
We use heapless in the aead crate to provide a Vec-like buffer type on no_std. Here's an example:
https://docs.rs/aes-gcm/0.5.0/aes_gcm/#in-place-usage-eliminates-alloc-requirement
We just bumped all of the RustCrypto crates to
generic-arrayv0.14, which adds some nice features:RustCrypto/traits#95
It'd be great if
heaplessgot updated too so we could share a single version ofgeneric-array(which hasn't happened so far as the RustCrypto crates were previously stuck on v0.12).We use
heaplessin theaeadcrate to provide aVec-like buffer type onno_std. Here's an example:https://docs.rs/aes-gcm/0.5.0/aes_gcm/#in-place-usage-eliminates-alloc-requirement