Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ed25519 v2.0.1 #624

Merged
merged 1 commit into from
Jan 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 7 additions & 1 deletion ed25519/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,13 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 2.0.0 (2023-01-15)
## 2.0.1 (2023-01-21)
### Changed
- Make `Signature` parsing infallible ([#623])

[#623]: https://github.com/RustCrypto/signatures/pull/623

## 2.0.0 (2023-01-15) [YANKED]
### Added
- `pkcs8` re-exports ([#589], [#590], [#591], [#592])
- `Signature::from_components` method ([#600])
Expand Down
2 changes: 1 addition & 1 deletion ed25519/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ed25519"
version = "2.0.0"
version = "2.0.1"
authors = ["RustCrypto Developers"]
license = "Apache-2.0 OR MIT"
description = """
Expand Down
4 changes: 2 additions & 2 deletions ed25519/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -291,8 +291,8 @@ pub type SignatureBytes = [u8; Signature::BYTE_SIZE];
/// Ed25519 signature.
///
/// This type represents a container for the byte serialization of an Ed25519
/// signature, and does not necessarily represent well-formed elements of the
/// respective elliptic curve fields.
/// signature, and does not necessarily represent well-formed field or curve
/// elements.
///
/// Signature verification libraries are expected to reject invalid field
/// elements at the time a signature is verified.
Expand Down