Skip to content

Commit 19d7616

Browse files
authored
p256 v0.12.0 (#718)
1 parent 0a597fe commit 19d7616

File tree

8 files changed

+31
-8
lines changed

8 files changed

+31
-8
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bp256/LICENSE-MIT

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2021 RustCrypto Developers
1+
Copyright (c) 2021-2023 RustCrypto Developers
22

33
Permission is hereby granted, free of charge, to any
44
person obtaining a copy of this software and associated

bp384/LICENSE-MIT

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2021 RustCrypto Developers
1+
Copyright (c) 2021-2023 RustCrypto Developers
22

33
Permission is hereby granted, free of charge, to any
44
person obtaining a copy of this software and associated

k256/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1313
- Impl `From<NonZeroScalar>` for `schnorr::SigningKey` ([#703])
1414
- Impl `From<SecretKey>` for `schnorr::SigningKey` ([#704])
1515
- `precomputed-tables` feature ([#697], [#705], [#707])
16-
- Constructors for scalars from `u128` ([#709])
16+
- Constructors for `Scalar` from `u128` ([#709])
1717

1818
### Changed
1919
- Use weak feature activation; MSRV 1.60 ([#701])

p256/CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,29 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## 0.12.0 (2023-01-16)
8+
### Added
9+
- 32-bit scalar backend ([#636])
10+
- `alloc` feature ([#670])
11+
- Constructors for `Scalar` from `u128` ([#709])
12+
13+
### Changed
14+
- Use generic curve arithmetic implementation from `primeorder` crate ([#631], [#716])
15+
- Use `U256` as the inner type for `FieldElement` ([#634])
16+
- Update P-256 VOPRF test vectors ([#693])
17+
- Use weak feature activation; MSRV 1.60 ([#701])
18+
- Bump `ecdsa` dependency to v0.15 ([#713])
19+
20+
[#631]: https://github.com/RustCrypto/elliptic-curves/pull/631
21+
[#634]: https://github.com/RustCrypto/elliptic-curves/pull/634
22+
[#636]: https://github.com/RustCrypto/elliptic-curves/pull/636
23+
[#670]: https://github.com/RustCrypto/elliptic-curves/pull/670
24+
[#693]: https://github.com/RustCrypto/elliptic-curves/pull/693
25+
[#701]: https://github.com/RustCrypto/elliptic-curves/pull/701
26+
[#709]: https://github.com/RustCrypto/elliptic-curves/pull/709
27+
[#713]: https://github.com/RustCrypto/elliptic-curves/pull/713
28+
[#716]: https://github.com/RustCrypto/elliptic-curves/pull/716
29+
730
## 0.11.1 (2022-06-12)
831
### Added
932
- Re-export low-level `diffie_hellman` function ([#556])

p256/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "p256"
3-
version = "0.12.0-pre.1"
3+
version = "0.12.0"
44
description = """
55
Pure Rust implementation of the NIST P-256 (a.k.a. secp256r1, prime256v1)
66
elliptic curve with support for ECDH, ECDSA signing/verification, and general
@@ -31,7 +31,7 @@ blobby = "0.3"
3131
criterion = "0.4"
3232
ecdsa-core = { version = "0.15", package = "ecdsa", default-features = false, features = ["dev"] }
3333
hex-literal = "0.3"
34-
proptest = "1.0"
34+
proptest = "1"
3535
rand_core = { version = "0.6", features = ["getrandom"] }
3636

3737
[features]

p256/LICENSE-MIT

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2020-2022 RustCrypto Developers
1+
Copyright (c) 2020-2023 RustCrypto Developers
22

33
Permission is hereby granted, free of charge, to any
44
person obtaining a copy of this software and associated

primeorder/LICENSE-MIT

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2020-2022 RustCrypto Developers
1+
Copyright (c) 2020-2023 RustCrypto Developers
22

33
Permission is hereby granted, free of charge, to any
44
person obtaining a copy of this software and associated

0 commit comments

Comments
 (0)