Publishing v4.0.0 (#407)

This commit is contained in:
Kevin Lewi
2025-10-23 16:28:30 -07:00
committed by GitHub
parent 4dae85b3a9
commit ed5e7cf116
4 changed files with 11 additions and 3 deletions
+1 -1
View File
@@ -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
View File
@@ -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"]
+1 -1
View File
@@ -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
+8
View File
@@ -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};