Skip to content

Commit

Permalink
p256 v0.11.1 (#603)
Browse files Browse the repository at this point in the history
  • Loading branch information
tarcieri committed Jun 12, 2022
1 parent 0e86925 commit 78ca5ef
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 2 deletions.
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.

16 changes: 16 additions & 0 deletions p256/CHANGELOG.md
Expand Up @@ -4,6 +4,22 @@ 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.11.1 (2022-06-12)
### Added
- Re-export low-level `diffie_hellman` function ([#556])
- Additional RFC6979 test vectors ([#591])

### Changed
- Use a 4-bit window for scalar multiplication ([#563])
- `invert()`, `sqrt()`: replace exponentiations with addition chains ([#564])
- Use generic prime order formulas ([#602])

[#556]: https://github.com/RustCrypto/elliptic-curves/pull/556
[#563]: https://github.com/RustCrypto/elliptic-curves/pull/563
[#564]: https://github.com/RustCrypto/elliptic-curves/pull/564
[#591]: https://github.com/RustCrypto/elliptic-curves/pull/591
[#602]: https://github.com/RustCrypto/elliptic-curves/pull/602

## 0.11.0 (2022-05-09)
### Changed
- Bump `digest` to v0.10 ([#515])
Expand Down
2 changes: 1 addition & 1 deletion p256/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "p256"
version = "0.11.0"
version = "0.11.1"
description = """
Pure Rust implementation of the NIST P-256 (a.k.a. secp256r1, prime256v1)
elliptic curve with support for ECDH, ECDSA signing/verification, and general
Expand Down

0 comments on commit 78ca5ef

Please sign in to comment.