You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Replaces the previous FromPublicKey and FromSecretKey traits with a more general FromBytes and ToBytes traits.
These match the function signatures presently used in the existing crates, and are useful in cases where e.g. a scalar doesn't necessarily represent a secret (such as in ECDSA).
Replaces the previous `FromPublicKey` and `FromSecretKey` traits with a
more general `FromBytes` and `ToBytes` traits.
These match the function signatures presently used in the existing
crates, and are useful in cases where e.g. a scalar doesn't necessarily
represent a secret (such as in ECDSA).
- Change ParamsBuilder to make it more ergonomic
- Remove unnecessary suppressions of dead code warnings
- Fix wrong docs for m_cost
- Fix wrong doc for Block
- Merge `Argon2` and `Instance` structs, remove Memory
- Remove parallel feature (to be re-added)
dns2utf8 pushed a commit
to dns2utf8/traits
that referenced
this pull request
Jan 24, 2023
- Bump version to `0.5.0-pre` (RustCrypto#247 contained breaking changes)
- Use pointer casts to convert `Block` integer array to byte array
- Rename `permutate!` to `permute!` (former isn't in OED, latter is)
scv35 added a commit
to scv35/Signature-algorithms
that referenced
this pull request
Jul 4, 2025
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
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.
Replaces the previous
FromPublicKeyandFromSecretKeytraits with a more generalFromBytesandToBytestraits.These match the function signatures presently used in the existing crates, and are useful in cases where e.g. a scalar doesn't necessarily represent a secret (such as in ECDSA).