ecdsa v0.14.8 (#549)

This commit is contained in:
Tony Arcieri
2022-09-27 20:07:49 -06:00
committed by GitHub
parent 8c7368320e
commit 17efd0fa4f
3 changed files with 12 additions and 2 deletions
Generated
+1 -1
View File
@@ -160,7 +160,7 @@ dependencies = [
[[package]]
name = "ecdsa"
version = "0.14.7"
version = "0.14.8"
dependencies = [
"der",
"elliptic-curve",
+10
View File
@@ -4,6 +4,16 @@ 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).
## 0.14.8 (2022-09-27)
### Added
- Impl `From<SigningKey>` for `SecretKey` ([#548])
### Fixed
- Prehash must receive zero-pads on left ([#547])
[#547]: https://github.com/RustCrypto/signatures/pull/547
[#548]: https://github.com/RustCrypto/signatures/pull/548
## 0.14.7 (2022-09-15)
### Changed
- Relax `Keypair` bounds ([#539])
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "ecdsa"
version = "0.14.7"
version = "0.14.8"
description = """
Pure Rust implementation of the Elliptic Curve Digital Signature Algorithm
(ECDSA) as specified in FIPS 186-4 (Digital Signature Standard), providing