20 releases (10 breaking)

0.10.2 Feb 17, 2022
0.9.0 Aug 29, 2021
0.8.1 Jul 20, 2021
0.7.2 Nov 12, 2020
0.0.0 Oct 6, 2016

#2147 in Cryptography

Download history 87018/week @ 2023-12-12 79685/week @ 2023-12-19 45900/week @ 2023-12-26 104248/week @ 2024-01-02 95795/week @ 2024-01-09 109994/week @ 2024-01-16 108592/week @ 2024-01-23 124462/week @ 2024-01-30 110048/week @ 2024-02-06 111346/week @ 2024-02-13 114514/week @ 2024-02-20 132031/week @ 2024-02-27 131612/week @ 2024-03-05 125301/week @ 2024-03-12 140193/week @ 2024-03-19 104177/week @ 2024-03-26

526,624 downloads per month
Used in 674 crates (26 directly)

MIT/Apache

18KB
249 lines

RustCrypto: Salsa20 Stream Cipher

Crate Docs Apache2/MIT licensed Rust Version Project Chat Build Status HAZMAT

Pure Rust implementation of the Salsa20 Stream Cipher.

Documentation

About

Salsa20 is a stream cipher which is designed to support high-performance software implementations.

This crate also contains an implementation of XSalsa20: a variant of Salsa20 with an extended 192-bit (24-byte) nonce, gated under the xsalsa20 Cargo feature (on-by-default).

⚠️ Security Warning: Hazmat!

This crate does not ensure ciphertexts are authentic (i.e. by using a MAC to verify ciphertext integrity), which can lead to serious vulnerabilities if used incorrectly!

No security audits of this crate have ever been performed, and it has not been thoroughly assessed to ensure its operation is constant-time on common CPU architectures.

USE AT YOUR OWN RISK!

Minimum Supported Rust Version

Rust 1.56 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

~370KB