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

Bump bitcoin-hpke-0.13.0 #11

Merged
merged 1 commit into from
Sep 4, 2024
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
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,18 @@ 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.13.0] - 2024-09-04

### Additions

* Support [secp256k1-based DHKEM](https://www.ietf.org/archive/id/draft-wahby-cfrg-hpke-kem-secp256k1-01.html) with libsecp256k1 C bindings via rust-bitcoin's [`secp256k1`](https://crates.io/crates/secp256k1) crate. Enable it using the `secp` feature.

### Changes

* Removed `k256`, `x25519`, `p256`, `p384`, and `p521` features
* Removed AesGcm AEAD schemes since bitcoin uses only ChaCha20Poly1305


## [0.12.0] - 2024-07-03

### Additions
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ repository = "https://github.com/payjoin/bitcoin-hpke"
documentation = "https://docs.rs/bitcoin-hpke"
description = "An implementation of the HPKE hybrid encryption standard (RFC 9180) on libsecp256k1"
readme = "README.md"
version = "0.12.0"
version = "0.13.0"
authors = ["Dan Gould <[email protected]>"]
edition = "2021"
license = "MIT/Apache-2.0"
Expand Down
Loading