Skip to content

Commit b4c5f44

Browse files
authored
Fix links to RustCrypto/AEADs (#100)
1 parent ad22c7b commit b4c5f44

7 files changed

Lines changed: 21 additions & 7 deletions

File tree

cbc/src/lib.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,11 @@
99
//!
1010
//! This crate does not ensure ciphertexts are authentic! Thus ciphertext integrity
1111
//! is not verified, which can lead to serious vulnerabilities!
12-
//! [AEADs][https://github.com/RustCrypto/AEADs] provide simple authenticated encryption,
12+
//! [RustCrypto/AEADs] provide simple authenticated encryption,
1313
//! which is much less error-prone than manual integrity verification.
1414
//!
15+
//! [RustCrypto/AEADs]: https://github.com/RustCrypto/AEADs
16+
//!
1517
//! # Example
1618
//! ```
1719
//! # #[cfg(feature = "block-padding")] {

cfb-mode/src/lib.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,11 @@
99
//!
1010
//! This crate does not ensure ciphertexts are authentic! Thus ciphertext integrity
1111
//! is not verified, which can lead to serious vulnerabilities!
12-
//! [AEADs][https://github.com/RustCrypto/AEADs] provide simple authenticated encryption,
12+
//! [RustCrypto/AEADs] provide simple authenticated encryption,
1313
//! which is much less error-prone than manual integrity verification.
1414
//!
15+
//! [RustCrypto/AEADs]: https://github.com/RustCrypto/AEADs
16+
//!
1517
//! # Example
1618
//! ```
1719
//! use aes::cipher::KeyIvInit;

cfb8/src/lib.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,11 @@
99
//!
1010
//! This crate does not ensure ciphertexts are authentic! Thus ciphertext integrity
1111
//! is not verified, which can lead to serious vulnerabilities!
12-
//! [AEADs][https://github.com/RustCrypto/AEADs] provide simple authenticated encryption,
12+
//! [RustCrypto/AEADs] provide simple authenticated encryption,
1313
//! which is much less error-prone than manual integrity verification.
1414
//!
15+
//! [RustCrypto/AEADs]: https://github.com/RustCrypto/AEADs
16+
//!
1517
//! # Example
1618
//! ```
1719
//! use aes::cipher::KeyIvInit;

ctr/src/lib.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,11 @@
99
//!
1010
//! This crate does not ensure ciphertexts are authentic! Thus ciphertext integrity
1111
//! is not verified, which can lead to serious vulnerabilities!
12-
//! [AEADs][https://github.com/RustCrypto/AEADs] provide simple authenticated encryption,
12+
//! [RustCrypto/AEADs] provide simple authenticated encryption,
1313
//! which is much less error-prone than manual integrity verification.
1414
//!
15+
//! [RustCrypto/AEADs]: https://github.com/RustCrypto/AEADs
16+
//!
1517
//! # Example
1618
//! ```
1719
//! use aes::cipher::{KeyIvInit, StreamCipher, StreamCipherSeek};

ige/src/lib.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,11 @@
99
//!
1010
//! This crate does not ensure ciphertexts are authentic! Thus ciphertext integrity
1111
//! is not verified, which can lead to serious vulnerabilities!
12-
//! [AEADs][https://github.com/RustCrypto/AEADs] provide simple authenticated encryption,
12+
//! [RustCrypto/AEADs] provide simple authenticated encryption,
1313
//! which is much less error-prone than manual integrity verification.
1414
//!
15+
//! [RustCrypto/AEADs]: https://github.com/RustCrypto/AEADs
16+
//!
1517
//! # Example
1618
//! ```
1719
//! # #[cfg(feature = "block-padding")] {

ofb/src/lib.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,11 @@
99
//!
1010
//! This crate does not ensure ciphertexts are authentic! Thus ciphertext integrity
1111
//! is not verified, which can lead to serious vulnerabilities!
12-
//! [AEADs][https://github.com/RustCrypto/AEADs] provide simple authenticated encryption,
12+
//! [RustCrypto/AEADs] provide simple authenticated encryption,
1313
//! which is much less error-prone than manual integrity verification.
1414
//!
15+
//! [RustCrypto/AEADs]: https://github.com/RustCrypto/AEADs
16+
//!
1517
//! # Example
1618
//! ```
1719
//! use aes::cipher::{KeyIvInit, StreamCipher};

pcbc/src/lib.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,11 @@
99
//!
1010
//! This crate does not ensure ciphertexts are authentic! Thus ciphertext integrity
1111
//! is not verified, which can lead to serious vulnerabilities!
12-
//! [AEADs][https://github.com/RustCrypto/AEADs] provide simple authenticated encryption,
12+
//! [RustCrypto/AEADs] provide simple authenticated encryption,
1313
//! which is much less error-prone than manual integrity verification.
1414
//!
15+
//! [RustCrypto/AEADs]: https://github.com/RustCrypto/AEADs
16+
//!
1517
//! # Example
1618
//! ```
1719
//! # #[cfg(feature = "block-padding")] {

0 commit comments

Comments
 (0)