Skip to content

Commit 4e52556

Browse files
authored
Publishing v3.0.0-pre.5 (#364)
1 parent a21678e commit 4e52556

File tree

4 files changed

+10
-9
lines changed

4 files changed

+10
-9
lines changed

CHANGELOG.md

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

3-
## 3.0.0-pre.5 (TBD)
4-
* Increased MSRV to 1.70
3+
## 3.0.0-pre.5 (September 18, 2024)
4+
* Increased MSRV to 1.74
5+
* Updated voprf dependency
56

67
## 3.0.0-pre.4 (July 25, 2023)
78
* Updated voprf and curve25519-dalek dependencies

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ license = "Apache-2.0 OR MIT"
88
name = "opaque-ke"
99
readme = "README.md"
1010
repository = "https://github.com/facebook/opaque-ke"
11-
rust-version = "1.70"
11+
rust-version = "1.74"
1212
version = "3.0.0-pre.5"
1313

1414
[features]

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## The OPAQUE key exchange protocol ![Build Status](https://github.com/novifinancial/opaque-ke/workflows/Rust%20CI/badge.svg)
1+
## The OPAQUE key exchange protocol ![Build Status](https://github.com/facebook/opaque-ke/workflows/Rust%20CI/badge.svg)
22

33
[OPAQUE](https://eprint.iacr.org/2018/163.pdf) is an asymmetric password-authenticated key exchange protocol. It allows a client to authenticate to a server using a password, without ever having to expose the plaintext password to the server.
44

@@ -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.4"
25+
opaque-ke = "3.0.0-pre.5"
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-11](https://datatracker.ietf.org/doc/draft-irtf-cfrg-opaque/11/), containing a detailed (byte-level) specification for OPAQUE
43+
- [draft-irtf-cfrg-opaque-16](https://datatracker.ietf.org/doc/draft-irtf-cfrg-opaque/16/), 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)

src/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
//! An implementation of the OPAQUE asymmetric password authentication key
1010
//! exchange protocol
1111
//!
12-
//! Note: This implementation is in sync with [draft-irtf-cfrg-opaque-10](https://datatracker.ietf.org/doc/draft-irtf-cfrg-opaque/10/),
12+
//! Note: This implementation is in sync with [draft-irtf-cfrg-opaque-16](https://datatracker.ietf.org/doc/draft-irtf-cfrg-opaque/16/),
1313
//! but this specification is subject to change, until the final version
1414
//! published by the IETF.
1515
//!
@@ -40,7 +40,7 @@
4040
//! type Ksf = opaque_ke::ksf::Identity;
4141
//! }
4242
//! ```
43-
//! See [examples/simple_login.rs](https://github.com/novifinancial/opaque-ke/blob/main/examples/simple_login.rs)
43+
//! See [examples/simple_login.rs](https://github.com/facebook/opaque-ke/blob/main/examples/simple_login.rs)
4444
//! for a working example of a simple password-based login using OPAQUE.
4545
//!
4646
//! Note that our choice of key stretching function in this example, `Identity`,
@@ -648,7 +648,7 @@
648648
//! which only the client should be able to process. For instance, if the server
649649
//! is expected to maintain any client-side secrets which require a password to
650650
//! access, then this export key can be used to encrypt these secrets so that
651-
//! they remain hidden from the server (see [examples/digital_locker.rs](https://github.com/novifinancial/opaque-ke/blob/main/examples/digital_locker.rs)
651+
//! they remain hidden from the server (see [examples/digital_locker.rs](https://github.com/facebook/opaque-ke/blob/main/examples/digital_locker.rs)
652652
//! for a working example).
653653
//!
654654
//! You can access the export key from the `export_key` field of

0 commit comments

Comments
 (0)