Publishing v4.0.0 (#407)
This commit is contained in:
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
## 4.0.0-pre.0 (September 8, 2025)
|
## 4.0.0 (October 23, 2025)
|
||||||
* Increased MSRV to 1.83
|
* Increased MSRV to 1.83
|
||||||
* Synced implementation with RFC 9807 (no core protocol changes)
|
* Synced implementation with RFC 9807 (no core protocol changes)
|
||||||
* Added a SIGMA-I key exchange implementation
|
* Added a SIGMA-I key exchange implementation
|
||||||
|
|||||||
+1
-1
@@ -10,7 +10,7 @@ name = "opaque-ke"
|
|||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
repository = "https://github.com/facebook/opaque-ke"
|
repository = "https://github.com/facebook/opaque-ke"
|
||||||
rust-version = "1.85"
|
rust-version = "1.85"
|
||||||
version = "4.0.0-pre.0"
|
version = "4.0.0"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
argon2 = ["dep:argon2"]
|
argon2 = ["dep:argon2"]
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ Installation
|
|||||||
Add the following line to the dependencies of your `Cargo.toml`:
|
Add the following line to the dependencies of your `Cargo.toml`:
|
||||||
|
|
||||||
```
|
```
|
||||||
opaque-ke = "4.0.0-pre.0"
|
opaque-ke = "4"
|
||||||
```
|
```
|
||||||
|
|
||||||
### Minimum Supported Rust Version
|
### Minimum Supported Rust Version
|
||||||
|
|||||||
@@ -1,3 +1,11 @@
|
|||||||
|
// Copyright (c) Meta Platforms, Inc. and affiliates.
|
||||||
|
//
|
||||||
|
// This source code is dual-licensed under either the MIT license found in the
|
||||||
|
// LICENSE-MIT file in the root directory of this source tree or the Apache
|
||||||
|
// License, Version 2.0 found in the LICENSE-APACHE file in the root directory
|
||||||
|
// of this source tree. You may select, at your option, one of the above-listed
|
||||||
|
// licenses.
|
||||||
|
|
||||||
use digest::OutputSizeUser;
|
use digest::OutputSizeUser;
|
||||||
use generic_array::GenericArray;
|
use generic_array::GenericArray;
|
||||||
use generic_array::sequence::{Concat, Split};
|
use generic_array::sequence::{Concat, Split};
|
||||||
|
|||||||
Reference in New Issue
Block a user