diff --git a/.github/workflows/bake-kdf.yml b/.github/workflows/bake-kdf.yml index 0a05bb5..f063639 100644 --- a/.github/workflows/bake-kdf.yml +++ b/.github/workflows/bake-kdf.yml @@ -22,7 +22,7 @@ jobs: strategy: matrix: rust: - - 1.56.0 # MSRV + - 1.57.0 # MSRV - stable target: - thumbv7em-none-eabi @@ -40,7 +40,7 @@ jobs: strategy: matrix: rust: - - 1.56.0 # MSRV + - 1.57.0 # MSRV - stable steps: - uses: actions/checkout@v4 diff --git a/README.md b/README.md index ec7c928..647d48d 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,7 @@ Collection of [Key Derivation Functions][KDF] (KDF) written in pure Rust. |--------------|----------------|:---------------------------------------------------------------------------------------------------:|:------------------------------------------------------------------------------------:|:-----------------------:| | [HKDF] | [`hkdf`] | [![crates.io](https://img.shields.io/crates/v/hkdf.svg)](https://crates.io/crates/hkdf) | [![Documentation](https://docs.rs/hkdf/badge.svg)](https://docs.rs/hkdf) | ![MSRV 1.41][msrv-1.41] | | [Concat-KDF] | [`concat-kdf`] | [![crates.io](https://img.shields.io/crates/v/concat-kdf.svg)](https://crates.io/crates/concat-kdf) | [![Documentation](https://docs.rs/concat-kdf/badge.svg)](https://docs.rs/concat-kdf) | ![MSRV 1.56][msrv-1.56] | +| [bake-kdf] | [`bake-kdf`] | [![crates.io](https://img.shields.io/crates/v/bake-kdf.svg)](https://crates.io/crates/bake-kdf) | [![Documentation](https://docs.rs/bake-kdf/badge.svg)](https://docs.rs/bake-kdf) | ![MSRV 1.57][msrv-1.57] | *NOTE: for password-based KDFs (e.g. Argon2, PBKDF2, scrypt), please see [RustCrypto/password-hashes]* @@ -21,33 +22,50 @@ MSRV bumps are considered breaking changes and will be performed only with minor All crates licensed under either of - * [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) - * [MIT license](http://opensource.org/licenses/MIT) +* [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) +* [MIT license](http://opensource.org/licenses/MIT) at your option. ### Contribution -Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions. +Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as +defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions. [//]: # (badges) [chat-image]: https://img.shields.io/badge/zulip-join_chat-blue.svg + [chat-link]: https://rustcrypto.zulipchat.com/#narrow/stream/260043-KDFs + [license-image]: https://img.shields.io/badge/license-Apache2.0/MIT-blue.svg + [deps-image]: https://deps.rs/repo/github/RustCrypto/KDFs/status.svg + [deps-link]: https://deps.rs/repo/github/RustCrypto/KDFs + [msrv-1.41]: https://img.shields.io/badge/rustc-1.41+-blue.svg + [msrv-1.56]: https://img.shields.io/badge/rustc-1.56+-blue.svg +[msrv-1.57]: https://img.shields.io/badge/rustc-1.57+-blue.svg + [//]: # (crates) [`hkdf`]: ./hkdf + [`concat-kdf`]: ./concat-kdf +[`bake-kdf`]: ./bake-kdf + [//]: # (algorithms) [KDF]: https://en.wikipedia.org/wiki/Key_derivation_function + [HKDF]: https://en.wikipedia.org/wiki/HKDF + [Concat-KDF]: https://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800-56ar.pdf + +[bake-kdf]: https://apmi.bsu.by/assets/files/std/bake-spec19.pdf + [RustCrypto/password-hashes]: https://github.com/RustCrypto/password-hashes