Uh oh!
There was an error while loading. Please reload this page.
aead: remove nonce generation APIs - #2098
Merged
Merged
Conversation
Replaces them with the `Generate` trait from #2096. Moves documentation about generating random nonces to the `Nonce` type.
tarcieriforce-pushed
the
aead/remove-nonce-gen
branch
from
November 24, 2025 15:45
afcf63d to
b51a93bComparetarcieri
marked this pull request as ready for review
November 24, 2025 15:47
newpavlov
approved these changes
Nov 24, 2025
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
tarcieri added a commit
to RustCrypto/AEADs
that referenced
this pull request
Dec 26, 2025
This is primarily the documentation changes for the newly introduced `Generate` trait which subsumed the previous RNG APIs. See also: - RustCrypto/traits#2096 - RustCrypto/traits#2098
tarcieri added a commit
to RustCrypto/AEADs
that referenced
this pull request
Dec 26, 2025
This is primarily the documentation changes for the newly introduced `Generate` trait which subsumed the previous RNG APIs. See also: - RustCrypto/traits#2096 - RustCrypto/traits#2098
tarcieri added a commit
to RustCrypto/AEADs
that referenced
this pull request
Dec 26, 2025
This is primarily the documentation changes for the newly introduced `Generate` trait which subsumed the previous RNG APIs. See also: - RustCrypto/traits#2096 - RustCrypto/traits#2098
Merged
tarcieri added a commit
that referenced
this pull request
Jun 8, 2026
## Added - Enable `missing_debug_implementations` lint and add `Debug` impls (#1411) - `AeadCore::TAG_POSITION` and `TagPosition` enum (#1798) - Re-export `crypto_common` as `common` (#2237) ## Changed - Replace `generic-array` with `hybrid-array` (#1384) - Edition changed to 2024 and MSRV bumped to 1.85 (#1759) - Replace `AeadInPlace` with `AeadInOut` (#1793) - Split `new_test!` into `new_pass_test!` and `new_fail_test!` (#2019) - Bump `crypto-common` to v0.2 - (#2276) ## Removed - `AeadCore::CiphertextOverhead` constant (#1737) - Stateful AEAD traits: `AeadMut*` (#1740) - `stream` module - extracted into `aead-stream` crate (#1801) - `heapless` support - will be added back in a future patch release (#1999) - Nonce generation APIs - use `Generate` trait instead (#2098) ## Fixed - Minor documentation error in `AeadCore::TagSize` (#1351)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Depends on: #2096Replaces them with the
Generatetrait (#2096)Moves documentation about generating random nonces to the
Noncetype.