• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

benches/H03-May-2022-4236

src/H03-May-2022-420284

tests/H03-May-2022-11085

.cargo-checksum.jsonH A D03-May-202289 11

.cargo_vcs_info.jsonH A D01-Jan-197074 65

CHANGELOG.mdH A D01-Jan-19702.6 KiB10069

Cargo.tomlH A D01-Jan-19701.9 KiB8370

Cargo.toml.orig-cargoH A D01-Jan-19701.3 KiB4034

LICENSE-APACHEH A D01-Jan-197010.6 KiB202169

LICENSE-MITH A D01-Jan-19701 KiB2622

README.mdH A D01-Jan-19701.8 KiB5738

README.md

1# RustCrypto: PBKDF2
2
3[![crate][crate-image]][crate-link]
4[![Docs][docs-image]][docs-link]
5![Apache2/MIT licensed][license-image]
6![Rust Version][rustc-image]
7[![Project Chat][chat-image]][chat-link]
8[![Build Status][build-image]][build-link]
9
10Pure Rust implementation of the [Password-Based Key Derivation Function v2 (PBKDF2)][1].
11
12[Documentation][docs-link]
13
14## Minimum Supported Rust Version
15
16Rust **1.47** or higher.
17
18Minimum supported Rust version can be changed in the future, but it will be
19done with a minor version bump.
20
21## SemVer Policy
22
23- All on-by-default features of this library are covered by SemVer
24- MSRV is considered exempt from SemVer as noted above
25
26## License
27
28Licensed under either of:
29
30 * [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0)
31 * [MIT license](http://opensource.org/licenses/MIT)
32
33at your option.
34
35### Contribution
36
37Unless you explicitly state otherwise, any contribution intentionally submitted
38for inclusion in the work by you, as defined in the Apache-2.0 license, shall be
39dual licensed as above, without any additional terms or conditions.
40
41[//]: # (badges)
42
43[crate-image]: https://img.shields.io/crates/v/pbkdf2.svg
44[crate-link]: https://crates.io/crates/pbkdf2
45[docs-image]: https://docs.rs/pbkdf2/badge.svg
46[docs-link]: https://docs.rs/pbkdf2/
47[license-image]: https://img.shields.io/badge/license-Apache2.0/MIT-blue.svg
48[rustc-image]: https://img.shields.io/badge/rustc-1.47+-blue.svg
49[chat-image]: https://img.shields.io/badge/zulip-join_chat-blue.svg
50[chat-link]: https://rustcrypto.zulipchat.com/#narrow/stream/260046-password-hashes
51[build-image]: https://github.com/RustCrypto/password-hashes/workflows/pbkdf2/badge.svg?branch=master&event=push
52[build-link]: https://github.com/RustCrypto/password-hashes/actions?query=workflow%3Apbkdf2
53
54[//]: # (general links)
55
56[1]: https://en.wikipedia.org/wiki/PBKDF2
57