RustCrypto / block-ciphers

Collection of block cipher algorithms written in pure Rust
662 stars 130 forks source link

Update GenericArray #426

Closed Firstyear closed 2 months ago

Firstyear commented 2 months ago

The current version of generic array in use by this (and other) projects in the RustCrypto ecosystem is 0.14.7. generic-array has released 1.1.0 of their crate, and includes the important feature "zeroize".

This crate should be updated to 1.1.0 so that consumers of this crate can use the zeroize feature.

newpavlov commented 2 months ago

We plan to migrate to the hybrid-array crate instead. The pre versions in this repository already use it.

Firstyear commented 2 months ago

Sounds good to me! Thank you!