Skip to content

Commit 2751627

Browse files
authored
Add correct link to Too much crypto (#495)
* Add correct link to Too much crypto Currently at https://docs.rs/chacha20poly1305/latest/chacha20poly1305/#supported-algorithms it renders link to audit from <https://github.com/RustCrypto/AEADs/blob/57956bf2d8273e7b3fddd127aa7116ad5ef1c5ad/chacha20poly1305/README.md?plain=1#L82>. * apply `cargo fmt`
1 parent 57956bf commit 2751627

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

chacha20poly1305/src/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@
1414
//!
1515
//! - [`XChaCha20Poly1305`] - ChaCha20Poly1305 variant with an extended 192-bit (24-byte) nonce.
1616
//! - [`ChaCha8Poly1305`] / [`ChaCha12Poly1305`] - non-standard, reduced-round variants
17-
//! (gated under the `reduced-round` Cargo feature). See the [Too Much Crypto][5]
17+
//! (gated under the `reduced-round` Cargo feature). See the
18+
//! [Too Much Crypto](https://eprint.iacr.org/2019/1492.pdf)
1819
//! paper for background and rationale on when these constructions could be used.
1920
//! When in doubt, prefer [`ChaCha20Poly1305`].
2021
//! - [`XChaCha8Poly1305`] / [`XChaCha12Poly1305`] - same as above,

0 commit comments

Comments
 (0)