Skip to content

Commit d13d261

Browse files
authored
Publishing v3.0.0-pre.4 (#337)
1 parent d65cc4d commit d13d261

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
## 3.0.0-pre.4 (July 25, 2023)
4+
* Updated voprf and curve25519-dalek dependencies
5+
36
## 3.0.0-pre.3 (June 7, 2023)
47
* Adjusted curve25519 support logic
58
* Adjusted key generation logic to be in line with commit 727b9ac of

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ name = "opaque-ke"
99
readme = "README.md"
1010
repository = "https://github.com/facebook/opaque-ke"
1111
rust-version = "1.65"
12-
version = "3.0.0-pre.3"
12+
version = "3.0.0-pre.4"
1313

1414
[features]
1515
argon2 = ["dep:argon2"]
@@ -24,7 +24,7 @@ std = ["dep:getrandom"]
2424
argon2 = { version = "0.5", default-features = false, features = [
2525
"alloc",
2626
], optional = true }
27-
curve25519-dalek = { version = "=4.0.0-rc.3", default-features = false, features = [
27+
curve25519-dalek = { version = "4", default-features = false, features = [
2828
"zeroize",
2929
], optional = true }
3030
derive-where = { version = "1", features = ["zeroize-on-drop"] }
@@ -39,7 +39,7 @@ serde = { version = "1", default-features = false, features = [
3939
"derive",
4040
], optional = true }
4141
subtle = { version = "2.3", default-features = false }
42-
voprf = { version = "=0.5.0-pre.5", default-features = false, features = [
42+
voprf = { version = "=0.5.0-pre.6", default-features = false, features = [
4343
"danger",
4444
] }
4545
zeroize = { version = "1.5", features = ["zeroize_derive"] }

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Installation
2222
Add the following line to the dependencies of your `Cargo.toml`:
2323

2424
```
25-
opaque-ke = "3.0.0-pre.3"
25+
opaque-ke = "3.0.0-pre.4"
2626
```
2727

2828
### Minimum Supported Rust Version
@@ -40,7 +40,7 @@ Resources
4040
---------
4141

4242
- [OPAQUE academic publication](https://eprint.iacr.org/2018/163.pdf), including formal definitions and a proof of security
43-
- [draft-irtf-cfrg-opaque-10](https://datatracker.ietf.org/doc/draft-irtf-cfrg-opaque/10/), containing a detailed (byte-level) specification for OPAQUE
43+
- [draft-irtf-cfrg-opaque-11](https://datatracker.ietf.org/doc/draft-irtf-cfrg-opaque/11/), containing a detailed (byte-level) specification for OPAQUE
4444
- ["Let's talk about PAKE"](https://blog.cryptographyengineering.com/2018/10/19/lets-talk-about-pake/), an introductory blog post written by Matthew Green that covers OPAQUE
4545
- [@serenity-kit/opaque](https://github.com/serenity-kit/opaque), a WebAssembly package for this library
4646
- [opaque-wasm](https://github.com/marucjmar/opaque-wasm), a WebAssembly package for this library. A comparison between `@serenity-kit/opaque` and `opaque-wasm` can be found [here](https://opaque-documentation.netlify.app/docs/faq#how-does-it-compare-to-opaque-wasm)

0 commit comments

Comments
 (0)