Compare commits
1
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2dc6a8b2c2 |
+3
-12
@@ -1,23 +1,14 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
## 0.4.0-pre.4 (July 9, 2022)
|
## 0.4.0 (September 15, 2022)
|
||||||
* Updated to be in sync with draft-irtf-cfrg-voprf-11
|
* Updated to be in sync with draft-irtf-cfrg-voprf-11, with
|
||||||
|
the addition of the POPRF mode
|
||||||
* Adds the evaluate() function to the servers to calculate the output of the OPRF
|
* Adds the evaluate() function to the servers to calculate the output of the OPRF
|
||||||
directly
|
directly
|
||||||
* Renames the former evaluate() function to blind_evaluate to match the spec
|
* Renames the former evaluate() function to blind_evaluate to match the spec
|
||||||
* Fixes the order of parameters for PoprfClient::blind to align it with the
|
* Fixes the order of parameters for PoprfClient::blind to align it with the
|
||||||
other clients
|
other clients
|
||||||
|
|
||||||
## 0.4.0-pre.3 (July 1, 2022)
|
|
||||||
* Updated to be in sync with draft-irtf-cfrg-voprf-10, with
|
|
||||||
the only difference from -09 being a constant string change
|
|
||||||
|
|
||||||
## 0.4.0-pre.2 (April 21, 2022)
|
|
||||||
* Exposes the derive_key function under the "danger" feature
|
* Exposes the derive_key function under the "danger" feature
|
||||||
|
|
||||||
## 0.4.0-pre.1 (April 1, 2022)
|
|
||||||
* Updated to be in sync with draft-irtf-cfrg-voprf-09, with
|
|
||||||
the addition of the POPRF mode
|
|
||||||
* Added support for running the API without performing allocations
|
* Added support for running the API without performing allocations
|
||||||
* Revamped the way the Group trait was used, so as to be more easily
|
* Revamped the way the Group trait was used, so as to be more easily
|
||||||
extendable to other groups
|
extendable to other groups
|
||||||
|
|||||||
+3
-3
@@ -1,5 +1,5 @@
|
|||||||
[package]
|
[package]
|
||||||
authors = ["Kevin Lewi <klewi@fb.com>"]
|
authors = ["Kevin Lewi <lewi.kevin.k@gmail.com>"]
|
||||||
categories = ["no-std", "algorithms", "cryptography"]
|
categories = ["no-std", "algorithms", "cryptography"]
|
||||||
description = "An implementation of a verifiable oblivious pseudorandom function (VOPRF)"
|
description = "An implementation of a verifiable oblivious pseudorandom function (VOPRF)"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
@@ -9,7 +9,7 @@ name = "voprf"
|
|||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
repository = "https://github.com/novifinancial/voprf/"
|
repository = "https://github.com/novifinancial/voprf/"
|
||||||
rust-version = "1.57"
|
rust-version = "1.57"
|
||||||
version = "0.4.0-pre.4"
|
version = "0.4.0"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
alloc = []
|
alloc = []
|
||||||
@@ -27,7 +27,7 @@ std = ["alloc"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
curve25519-dalek = { version = "=4.0.0-pre.1", default-features = false, optional = true }
|
curve25519-dalek = { version = "=4.0.0-pre.1", default-features = false, optional = true }
|
||||||
derive-where = { version = "=1.0.0-rc.3", features = ["zeroize-on-drop"] }
|
derive-where = { version = "1", features = ["zeroize-on-drop"] }
|
||||||
digest = "0.10"
|
digest = "0.10"
|
||||||
displaydoc = { version = "0.2", default-features = false }
|
displaydoc = { version = "0.2", default-features = false }
|
||||||
elliptic-curve = { version = "0.12", features = [
|
elliptic-curve = { version = "0.12", features = [
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ Installation
|
|||||||
Add the following line to the dependencies of your `Cargo.toml`:
|
Add the following line to the dependencies of your `Cargo.toml`:
|
||||||
|
|
||||||
```
|
```
|
||||||
voprf = "0.4.0-pre.4"
|
voprf = "0.4"
|
||||||
```
|
```
|
||||||
|
|
||||||
### Minimum Supported Rust Version
|
### Minimum Supported Rust Version
|
||||||
|
|||||||
Reference in New Issue
Block a user