5 releases (3 breaking)
0.5.1 | Jun 28, 2023 |
---|---|
0.5.0 | Apr 18, 2023 |
0.4.0 | Aug 10, 2022 |
0.3.0 | Jun 8, 2021 |
0.0.2 |
|
#2605 in Cryptography
18,418 downloads per month
Used in 26 crates
(16 directly)
165KB
3K
SLoC
RustCrypto: crypto
crate
Facade crate for RustCrypto Traits, providing a single place to access compatible versions of all traits from the Rust Crypto project.
About
Facade crate for RustCrypto Traits, providing a single place to access compatible versions of all traits from the Rust Crypto project.
About
The RustCrypto Project publishes and maintains independently versioned crates containing traits for many different kinds of cryptographic algorithms.
However, these algorithms are often interdependent (e.g. many depend on digest algorithms), which requires figuring out which versions of the trait crates are compatible with each other.
This crate will automatically pull in compatible versions of these crates, with each one gated under a cargo feature, providing a single place to both import and upgrade these crates while ensuring they remain compatible.
Traits
The following traits are available as re-exports of RustCrypto crates through this crate's facade. To access a particular re-export you (or a crate you depend on) must enable the associated Cargo feature named below.
Re-export | Cargo feature | Description |
---|---|---|
aead |
aead |
Authenticated Encryption with Associated Data (i.e. high-level symmetric encryption) |
cipher |
cipher |
Block and stream ciphers (i.e. low-level symmetric encryption) |
digest |
digest |
Cryptographic hash functions |
elliptic_curve |
elliptic-curve |
Elliptic curve cryptography |
password_hash |
password-hash |
Password hashing functions |
signature |
signature |
Digital signatures (i.e. public key-based message authentication) |
universal_hash |
universal‑hash |
Universal Hash Functions (used to build MACs) |
Minimum Supported Rust Version
Rust 1.65 or higher.
Minimum supported Rust version can be changed in the future, but it will be done with a minor version bump.
SemVer Policy
- All on-by-default features of this library are covered by SemVer
- MSRV is considered exempt from SemVer as noted above
License
Licensed under either of:
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.
Dependencies
~190–620KB
~13K SLoC