Compare commits
36
Commits
v0.4.1
...
v0.6.0-pre.0
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
eb55e9f5b5 | ||
|
|
e944f9db3b | ||
|
|
f3f4fef0e9 | ||
|
|
23aa7813e7 | ||
|
|
0473d9db68 | ||
|
|
f0531f0812 | ||
|
|
c93884aca3 | ||
|
|
40769f7eca | ||
|
|
1b67086028 | ||
|
|
68cc7d3709 | ||
|
|
59e3fedb21 | ||
|
|
8da56845b8 | ||
|
|
c0162ec8d9 | ||
|
|
ee91c9776c | ||
|
|
0fdfdfdaee | ||
|
|
eafa134c94 | ||
|
|
209b957ae4 | ||
|
|
f79ebf9844 | ||
|
|
20a35da7ba | ||
|
|
4bd2cf466e | ||
|
|
829c6add0f | ||
|
|
8b895cc631 | ||
|
|
83eb78b232 | ||
|
|
5badeff8d2 | ||
|
|
40d81294db | ||
|
|
8363d26f6f | ||
|
|
5bce3e3206 | ||
|
|
2787151e1d | ||
|
|
0409db6f40 | ||
|
|
74eaebe446 | ||
|
|
c8de51672b | ||
|
|
daa8dc048f | ||
|
|
2a351ceb4d | ||
|
|
8f60a10b8d | ||
|
|
1691125b09 | ||
|
|
6913b5deaa |
+5
-4
@@ -1,6 +1,7 @@
|
|||||||
// Copyright (c) Facebook, Inc. and its affiliates.
|
// Copyright (c) Meta Platforms, Inc. and affiliates.
|
||||||
//
|
//
|
||||||
// This source code is licensed under both the MIT license found in the
|
// 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 and the Apache
|
// 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
|
// License, Version 2.0 found in the LICENSE-APACHE file in the root directory
|
||||||
// of this source tree.
|
// of this source tree. You may select, at your option, one of the above-listed
|
||||||
|
// licenses.
|
||||||
|
|||||||
+21
-17
@@ -4,7 +4,7 @@ on:
|
|||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
pull_request:
|
pull_request:
|
||||||
types: [opened, repoened, synchronize]
|
types: [opened, reopened, synchronize]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
cargo-audit:
|
cargo-audit:
|
||||||
@@ -12,7 +12,7 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Cache cargo-audit
|
- name: Cache cargo-audit
|
||||||
uses: actions/cache@v3
|
uses: actions/cache@v4
|
||||||
with:
|
with:
|
||||||
path: |
|
path: |
|
||||||
~/.cargo/.crates.toml
|
~/.cargo/.crates.toml
|
||||||
@@ -24,7 +24,7 @@ jobs:
|
|||||||
run: cargo install cargo-audit
|
run: cargo install cargo-audit
|
||||||
|
|
||||||
- name: Checkout sources
|
- name: Checkout sources
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Run cargo audit
|
- name: Run cargo audit
|
||||||
run: cargo audit -D warnings
|
run: cargo audit -D warnings
|
||||||
@@ -35,8 +35,7 @@ jobs:
|
|||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
backend_feature:
|
backend_feature:
|
||||||
- --features ristretto255-ciphersuite,ristretto255-u64
|
- --features ristretto255-ciphersuite
|
||||||
- --features ristretto255-ciphersuite,ristretto255-u32
|
|
||||||
-
|
-
|
||||||
frontend_feature:
|
frontend_feature:
|
||||||
-
|
-
|
||||||
@@ -44,11 +43,11 @@ jobs:
|
|||||||
- --features serde
|
- --features serde
|
||||||
toolchain:
|
toolchain:
|
||||||
- stable
|
- stable
|
||||||
- 1.57.0
|
- 1.83.0
|
||||||
name: test
|
name: test
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout sources
|
- name: Checkout sources
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Install ${{ matrix.toolchain }} toolchain
|
- name: Install ${{ matrix.toolchain }} toolchain
|
||||||
uses: actions-rs/toolchain@v1
|
uses: actions-rs/toolchain@v1
|
||||||
@@ -75,6 +74,12 @@ jobs:
|
|||||||
command: test
|
command: test
|
||||||
args: --no-default-features ${{ matrix.frontend_feature }},std ${{ matrix.backend_feature }}
|
args: --no-default-features ${{ matrix.frontend_feature }},std ${{ matrix.backend_feature }}
|
||||||
|
|
||||||
|
- name: Run cargo test with all features enabled
|
||||||
|
uses: actions-rs/cargo@v1
|
||||||
|
with:
|
||||||
|
command: test
|
||||||
|
args: --all-features
|
||||||
|
|
||||||
build-no-std:
|
build-no-std:
|
||||||
name: Build with no-std on ${{ matrix.target }}
|
name: Build with no-std on ${{ matrix.target }}
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
@@ -88,15 +93,14 @@ jobs:
|
|||||||
- thumbv6m-none-eabi
|
- thumbv6m-none-eabi
|
||||||
backend_feature:
|
backend_feature:
|
||||||
-
|
-
|
||||||
- --features ristretto255-ciphersuite,ristretto255-u64
|
- --features ristretto255-ciphersuite
|
||||||
- --features ristretto255-ciphersuite,ristretto255-u32
|
|
||||||
frontend_feature:
|
frontend_feature:
|
||||||
-
|
-
|
||||||
- --features danger
|
- --features danger
|
||||||
- --features serde
|
- --features serde
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
- uses: hecrj/setup-rust-action@v1
|
- uses: hecrj/setup-rust-action@v2
|
||||||
- run: rustup target add ${{ matrix.target }}
|
- run: rustup target add ${{ matrix.target }}
|
||||||
- run: cargo build --verbose --target=${{ matrix.target }} --no-default-features ${{ matrix.frontend_feature }} ${{ matrix.backend_feature }}
|
- run: cargo build --verbose --target=${{ matrix.target }} --no-default-features ${{ matrix.frontend_feature }} ${{ matrix.backend_feature }}
|
||||||
|
|
||||||
@@ -106,7 +110,7 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout sources
|
- name: Checkout sources
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Install stable toolchain
|
- name: Install stable toolchain
|
||||||
uses: actions-rs/toolchain@v1
|
uses: actions-rs/toolchain@v1
|
||||||
@@ -120,7 +124,7 @@ jobs:
|
|||||||
uses: actions-rs/cargo@v1
|
uses: actions-rs/cargo@v1
|
||||||
with:
|
with:
|
||||||
command: clippy
|
command: clippy
|
||||||
args: --all-targets -- -D warnings
|
args: --all-features --all-targets -- -D warnings
|
||||||
|
|
||||||
- name: Run cargo doc
|
- name: Run cargo doc
|
||||||
uses: actions-rs/cargo@v1
|
uses: actions-rs/cargo@v1
|
||||||
@@ -136,7 +140,7 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout sources
|
- name: Checkout sources
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Install nightly toolchain
|
- name: Install nightly toolchain
|
||||||
uses: actions-rs/toolchain@v1
|
uses: actions-rs/toolchain@v1
|
||||||
@@ -157,7 +161,7 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Cache
|
- name: Cache
|
||||||
uses: actions/cache@v3
|
uses: actions/cache@v4
|
||||||
with:
|
with:
|
||||||
path: |
|
path: |
|
||||||
~/.cargo/.crates.toml
|
~/.cargo/.crates.toml
|
||||||
@@ -166,10 +170,10 @@ jobs:
|
|||||||
key: taplo
|
key: taplo
|
||||||
|
|
||||||
- name: Install Taplo
|
- name: Install Taplo
|
||||||
run: cargo install taplo-cli
|
run: cargo install taplo-cli --locked
|
||||||
|
|
||||||
- name: Checkout sources
|
- name: Checkout sources
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Run Taplo
|
- name: Run Taplo
|
||||||
run: taplo fmt --check
|
run: taplo fmt --check
|
||||||
|
|||||||
@@ -10,9 +10,10 @@ jobs:
|
|||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
os: [ubuntu-latest]
|
os: [ubuntu-latest]
|
||||||
|
rust: [stable]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: hecrj/setup-rust-action@v1
|
- uses: hecrj/setup-rust-action@v2
|
||||||
with:
|
with:
|
||||||
rust-version: ${{ matrix.rust }}
|
rust-version: ${{ matrix.rust }}
|
||||||
- uses: actions/checkout@master
|
- uses: actions/checkout@master
|
||||||
|
|||||||
@@ -1,5 +1,39 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 0.6.0-pre.0 (November 8, 2025)
|
||||||
|
* MSRV bumped to 1.83
|
||||||
|
* Updated Ristretto255 random scalar generation
|
||||||
|
* Updated generic-array to v1
|
||||||
|
|
||||||
|
## 0.5.0 (March 6, 2024)
|
||||||
|
* Just a version bump from v0.5.0-pre.7
|
||||||
|
|
||||||
|
## 0.5.0-pre.7 (January 11, 2024)
|
||||||
|
* Updated to be in sync with RFC 9497
|
||||||
|
|
||||||
|
## 0.5.0-pre.6 (July 24, 2023)
|
||||||
|
* Updated curve25519-dalek dependency to 4
|
||||||
|
|
||||||
|
## 0.5.0-pre.5 (June 27, 2023)
|
||||||
|
* Updated curve25519-dalek dependency to 4.0.0-rc.3
|
||||||
|
|
||||||
|
## 0.5.0-pre.4 (May 20, 2023)
|
||||||
|
* Updated curve25519-dalek dependency to 4.0.0-rc.2
|
||||||
|
|
||||||
|
## 0.5.0-pre.3 (March 4, 2023)
|
||||||
|
* Updated to be in sync with draft-irtf-cfrg-voprf-19
|
||||||
|
* Increased MSRV to 1.65
|
||||||
|
* Updated p256 dependency to v0.13
|
||||||
|
* Added p384 tests
|
||||||
|
|
||||||
|
## 0.5.0-pre.2 (February 3, 2023)
|
||||||
|
* Increased MSRV to 1.60
|
||||||
|
* Updated p256 dependency to v0.12
|
||||||
|
* Updated curve25519-dalek dependency to 4.0.0-rc.1
|
||||||
|
|
||||||
|
## 0.5.0-pre.1 (December 19, 2022)
|
||||||
|
* Updated curve25519-dalek dependency to 4.0.0-pre.5
|
||||||
|
|
||||||
## 0.4.0 (September 15, 2022)
|
## 0.4.0 (September 15, 2022)
|
||||||
* Updated to be in sync with draft-irtf-cfrg-voprf-11, with
|
* Updated to be in sync with draft-irtf-cfrg-voprf-11, with
|
||||||
the addition of the POPRF mode
|
the addition of the POPRF mode
|
||||||
|
|||||||
+2
-1
@@ -27,4 +27,5 @@ outlined on that page and do not file a public issue.
|
|||||||
|
|
||||||
## License
|
## License
|
||||||
By contributing to voprf, you agree that your contributions will be
|
By contributing to voprf, you agree that your contributions will be
|
||||||
licensed under the LICENSE file in the root directory of this source tree.
|
licensed under both the LICENSE-MIT and LICENSE-APACHE files in the root
|
||||||
|
directory of this source tree.
|
||||||
|
|||||||
+27
-20
@@ -7,37 +7,35 @@ keywords = ["oprf"]
|
|||||||
license = "MIT"
|
license = "MIT"
|
||||||
name = "voprf"
|
name = "voprf"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
repository = "https://github.com/novifinancial/voprf/"
|
repository = "https://github.com/facebook/voprf/"
|
||||||
rust-version = "1.57"
|
rust-version = "1.83"
|
||||||
version = "0.4.0"
|
version = "0.6.0-pre.0"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
alloc = []
|
alloc = []
|
||||||
danger = []
|
danger = []
|
||||||
default = ["ristretto255-ciphersuite", "ristretto255-u64", "serde"]
|
default = ["ristretto255-ciphersuite", "dep:serde"]
|
||||||
ristretto255 = ["curve25519-dalek", "generic-array/more_lengths"]
|
ristretto255 = ["dep:curve25519-dalek"]
|
||||||
ristretto255-ciphersuite = ["ristretto255", "sha2"]
|
ristretto255-ciphersuite = ["ristretto255", "dep:sha2"]
|
||||||
ristretto255-fiat-u32 = ["curve25519-dalek/fiat_u32_backend", "ristretto255"]
|
serde = ["curve25519-dalek?/serde", "generic-array/serde", "dep:serde"]
|
||||||
ristretto255-fiat-u64 = ["curve25519-dalek/fiat_u64_backend", "ristretto255"]
|
|
||||||
ristretto255-simd = ["curve25519-dalek/simd_backend", "ristretto255"]
|
|
||||||
ristretto255-u32 = ["curve25519-dalek/u32_backend", "ristretto255"]
|
|
||||||
ristretto255-u64 = ["curve25519-dalek/u64_backend", "ristretto255"]
|
|
||||||
serde = ["generic-array/serde", "serde_"]
|
|
||||||
std = ["alloc"]
|
std = ["alloc"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
curve25519-dalek = { version = "=4.0.0-pre.1", default-features = false, optional = true }
|
curve25519-dalek = { version = "4", default-features = false, features = [
|
||||||
|
"rand_core",
|
||||||
|
"zeroize",
|
||||||
|
], optional = true }
|
||||||
derive-where = { version = "1", 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.13", features = [
|
||||||
"hash2curve",
|
"hash2curve",
|
||||||
"sec1",
|
"sec1",
|
||||||
"voprf",
|
"voprf",
|
||||||
] }
|
] }
|
||||||
generic-array = "0.14"
|
generic-array = "1"
|
||||||
rand_core = { version = "0.6", default-features = false }
|
rand_core = { version = "0.6", default-features = false }
|
||||||
serde_ = { version = "1", package = "serde", default-features = false, features = [
|
serde = { version = "1", default-features = false, features = [
|
||||||
"derive",
|
"derive",
|
||||||
], optional = true }
|
], optional = true }
|
||||||
sha2 = { version = "0.10", default-features = false, optional = true }
|
sha2 = { version = "0.10", default-features = false, optional = true }
|
||||||
@@ -45,18 +43,27 @@ subtle = { version = "2.3", default-features = false }
|
|||||||
zeroize = { version = "1.5", default-features = false }
|
zeroize = { version = "1.5", default-features = false }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
generic-array = { version = "0.14", features = ["more_lengths"] }
|
generic-array = { version = "1" }
|
||||||
hex = "0.4"
|
hex = "0.4"
|
||||||
json = "0.12"
|
p256 = { version = "0.13", default-features = false, features = [
|
||||||
p256 = { version = "0.11", default-features = false, features = [
|
"hash2curve",
|
||||||
|
"voprf",
|
||||||
|
] }
|
||||||
|
p384 = { version = "0.13", default-features = false, features = [
|
||||||
|
"hash2curve",
|
||||||
|
"voprf",
|
||||||
|
] }
|
||||||
|
p521 = { version = "0.13.3", default-features = false, features = [
|
||||||
"hash2curve",
|
"hash2curve",
|
||||||
"voprf",
|
"voprf",
|
||||||
] }
|
] }
|
||||||
proptest = "1"
|
proptest = "1"
|
||||||
rand = "0.8"
|
rand = "0.8"
|
||||||
regex = "1"
|
regex = "1"
|
||||||
|
serde_json = "1"
|
||||||
sha2 = "0.10"
|
sha2 = "0.10"
|
||||||
|
|
||||||
[package.metadata.docs.rs]
|
[package.metadata.docs.rs]
|
||||||
features = ["danger", "std"]
|
all-features = true
|
||||||
|
rustdoc-args = ["--cfg", "docsrs"]
|
||||||
targets = []
|
targets = []
|
||||||
|
|||||||
@@ -1,12 +0,0 @@
|
|||||||
## License
|
|
||||||
|
|
||||||
Licensed under either of
|
|
||||||
* Apache License, Version 2.0 ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0)
|
|
||||||
* MIT license ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT)
|
|
||||||
at your option.
|
|
||||||
|
|
||||||
### Contribution
|
|
||||||
|
|
||||||
Unless you explicitly state otherwise, any contribution intentionally submitted
|
|
||||||
for inclusion in the work by you, as defined in the Apache-2.0 license, shall
|
|
||||||
be dual licensed as above, without any additional terms or conditions.
|
|
||||||
@@ -3,7 +3,7 @@ An implementation of a (verifiable) oblivious pseudorandom function (VOPRF)
|
|||||||
|
|
||||||
A VOPRF is a verifiable oblivious pseudorandom function, a protocol between a client and a server. The regular (non-verifiable) OPRF is also supported in this implementation.
|
A VOPRF is a verifiable oblivious pseudorandom function, a protocol between a client and a server. The regular (non-verifiable) OPRF is also supported in this implementation.
|
||||||
|
|
||||||
This implementation is based on the [Internet Draft for VOPRF](https://github.com/cfrg/draft-irtf-cfrg-voprf).
|
This implementation is based on [RFC 9497](https://www.rfc-editor.org/rfc/rfc9497).
|
||||||
|
|
||||||
Documentation
|
Documentation
|
||||||
-------------
|
-------------
|
||||||
@@ -16,12 +16,12 @@ 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"
|
voprf = "0.6.0-pre.0"
|
||||||
```
|
```
|
||||||
|
|
||||||
### Minimum Supported Rust Version
|
### Minimum Supported Rust Version
|
||||||
|
|
||||||
Rust **1.57** or higher.
|
Rust **1.65** or higher.
|
||||||
|
|
||||||
Contributors
|
Contributors
|
||||||
------------
|
------------
|
||||||
@@ -32,4 +32,6 @@ To learn more about contributing to this project, [see this document](./CONTRIBU
|
|||||||
License
|
License
|
||||||
-------
|
-------
|
||||||
|
|
||||||
This project is [licensed](./LICENSE) under either Apache 2.0 or MIT, at your option.
|
This project is dual-licensed under either the [MIT license](./LICENSE-MIT)
|
||||||
|
or the [Apache License, Version 2.0](./LICENSE-APACHE).
|
||||||
|
You may select, at your option, one of the above-listed licenses.
|
||||||
|
|||||||
+14
-12
@@ -1,16 +1,18 @@
|
|||||||
// Copyright (c) Facebook, Inc. and its affiliates.
|
// Copyright (c) Meta Platforms, Inc. and affiliates.
|
||||||
//
|
//
|
||||||
// This source code is licensed under both the MIT license found in the
|
// 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 and the Apache
|
// 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
|
// License, Version 2.0 found in the LICENSE-APACHE file in the root directory
|
||||||
// of this source tree.
|
// of this source tree. You may select, at your option, one of the above-listed
|
||||||
|
// licenses.
|
||||||
|
|
||||||
//! Defines the CipherSuite trait to specify the underlying primitives for VOPRF
|
//! Defines the CipherSuite trait to specify the underlying primitives for VOPRF
|
||||||
|
|
||||||
use digest::core_api::BlockSizeUser;
|
use digest::core_api::BlockSizeUser;
|
||||||
use digest::{Digest, OutputSizeUser};
|
use digest::{FixedOutput, HashMarker, OutputSizeUser};
|
||||||
use elliptic_curve::VoprfParameters;
|
use elliptic_curve::VoprfParameters;
|
||||||
use generic_array::typenum::{IsLess, IsLessOrEqual, U256};
|
use generic_array::typenum::{IsLess, IsLessOrEqual, U256};
|
||||||
|
use generic_array::ArrayLength;
|
||||||
|
|
||||||
use crate::Group;
|
use crate::Group;
|
||||||
|
|
||||||
@@ -18,11 +20,11 @@ use crate::Group;
|
|||||||
pub trait CipherSuite
|
pub trait CipherSuite
|
||||||
where
|
where
|
||||||
<Self::Hash as OutputSizeUser>::OutputSize:
|
<Self::Hash as OutputSizeUser>::OutputSize:
|
||||||
IsLess<U256> + IsLessOrEqual<<Self::Hash as BlockSizeUser>::BlockSize>,
|
ArrayLength + IsLess<U256> + IsLessOrEqual<<Self::Hash as BlockSizeUser>::BlockSize>,
|
||||||
{
|
{
|
||||||
/// The ciphersuite identifier as dictated by
|
/// The ciphersuite identifier as dictated by
|
||||||
/// <https://datatracker.ietf.org/doc/draft-irtf-cfrg-voprf/>
|
/// <https://www.rfc-editor.org/rfc/rfc9497>
|
||||||
const ID: u16;
|
const ID: &'static str;
|
||||||
|
|
||||||
/// A finite cyclic group along with a point representation that allows some
|
/// A finite cyclic group along with a point representation that allows some
|
||||||
/// customization on how to hash an input to a curve point. See [`Group`].
|
/// customization on how to hash an input to a curve point. See [`Group`].
|
||||||
@@ -30,17 +32,17 @@ where
|
|||||||
|
|
||||||
/// The main hash function to use (for HKDF computations and hashing
|
/// The main hash function to use (for HKDF computations and hashing
|
||||||
/// transcripts).
|
/// transcripts).
|
||||||
type Hash: BlockSizeUser + Digest;
|
type Hash: BlockSizeUser + Default + FixedOutput + HashMarker;
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<T: VoprfParameters> CipherSuite for T
|
impl<T: VoprfParameters> CipherSuite for T
|
||||||
where
|
where
|
||||||
T: Group,
|
T: Group,
|
||||||
T::Hash: BlockSizeUser + Digest,
|
T::Hash: BlockSizeUser + Default + FixedOutput + HashMarker,
|
||||||
<T::Hash as OutputSizeUser>::OutputSize:
|
<T::Hash as OutputSizeUser>::OutputSize:
|
||||||
IsLess<U256> + IsLessOrEqual<<T::Hash as BlockSizeUser>::BlockSize>,
|
ArrayLength + IsLess<U256> + IsLessOrEqual<<T::Hash as BlockSizeUser>::BlockSize>,
|
||||||
{
|
{
|
||||||
const ID: u16 = T::ID;
|
const ID: &'static str = T::ID;
|
||||||
|
|
||||||
type Group = T;
|
type Group = T;
|
||||||
|
|
||||||
|
|||||||
+110
-109
@@ -1,19 +1,20 @@
|
|||||||
// Copyright (c) Facebook, Inc. and its affiliates.
|
// Copyright (c) Meta Platforms, Inc. and affiliates.
|
||||||
//
|
//
|
||||||
// This source code is licensed under both the MIT license found in the
|
// 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 and the Apache
|
// 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
|
// License, Version 2.0 found in the LICENSE-APACHE file in the root directory
|
||||||
// of this source tree.
|
// of this source tree. You may select, at your option, one of the above-listed
|
||||||
|
// licenses.
|
||||||
|
|
||||||
//! Common functionality between multiple OPRF modes.
|
//! Common functionality between multiple OPRF modes.
|
||||||
|
|
||||||
use core::convert::TryFrom;
|
use core::convert::TryFrom;
|
||||||
|
use core::ops::Add;
|
||||||
|
|
||||||
use derive_where::derive_where;
|
use derive_where::derive_where;
|
||||||
use digest::core_api::BlockSizeUser;
|
|
||||||
use digest::{Digest, Output, OutputSizeUser};
|
use digest::{Digest, Output, OutputSizeUser};
|
||||||
use generic_array::sequence::Concat;
|
use generic_array::sequence::Concat;
|
||||||
use generic_array::typenum::{IsLess, IsLessOrEqual, Unsigned, U11, U2, U256};
|
use generic_array::typenum::{IsLess, Unsigned, U2, U256, U9};
|
||||||
use generic_array::{ArrayLength, GenericArray};
|
use generic_array::{ArrayLength, GenericArray};
|
||||||
use rand_core::{CryptoRng, RngCore};
|
use rand_core::{CryptoRng, RngCore};
|
||||||
use subtle::ConstantTimeEq;
|
use subtle::ConstantTimeEq;
|
||||||
@@ -33,7 +34,7 @@ pub(crate) const STR_DERIVE_KEYPAIR: [u8; 13] = *b"DeriveKeyPair";
|
|||||||
pub(crate) const STR_COMPOSITE: [u8; 9] = *b"Composite";
|
pub(crate) const STR_COMPOSITE: [u8; 9] = *b"Composite";
|
||||||
pub(crate) const STR_CHALLENGE: [u8; 9] = *b"Challenge";
|
pub(crate) const STR_CHALLENGE: [u8; 9] = *b"Challenge";
|
||||||
pub(crate) const STR_INFO: [u8; 4] = *b"Info";
|
pub(crate) const STR_INFO: [u8; 4] = *b"Info";
|
||||||
pub(crate) const STR_VOPRF: [u8; 8] = *b"VOPRF10-";
|
pub(crate) const STR_OPRF: [u8; 7] = *b"OPRFV1-";
|
||||||
pub(crate) const STR_HASH_TO_SCALAR: [u8; 13] = *b"HashToScalar-";
|
pub(crate) const STR_HASH_TO_SCALAR: [u8; 13] = *b"HashToScalar-";
|
||||||
pub(crate) const STR_HASH_TO_GROUP: [u8; 12] = *b"HashToGroup-";
|
pub(crate) const STR_HASH_TO_GROUP: [u8; 12] = *b"HashToGroup-";
|
||||||
|
|
||||||
@@ -72,15 +73,12 @@ impl Mode {
|
|||||||
#[cfg_attr(
|
#[cfg_attr(
|
||||||
feature = "serde",
|
feature = "serde",
|
||||||
derive(serde::Deserialize, serde::Serialize),
|
derive(serde::Deserialize, serde::Serialize),
|
||||||
serde(crate = "serde", bound = "")
|
serde(bound = "")
|
||||||
)]
|
)]
|
||||||
pub struct BlindedElement<CS: CipherSuite>(
|
pub struct BlindedElement<CS: CipherSuite>(
|
||||||
#[cfg_attr(feature = "serde", serde(with = "Element::<CS::Group>"))]
|
#[cfg_attr(feature = "serde", serde(with = "Element::<CS::Group>"))]
|
||||||
pub(crate) <CS::Group as Group>::Elem,
|
pub(crate) <CS::Group as Group>::Elem,
|
||||||
)
|
);
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>;
|
|
||||||
|
|
||||||
/// The server's response to the [BlindedElement] message from a client (either
|
/// The server's response to the [BlindedElement] message from a client (either
|
||||||
/// verifiable or not) to a server (either verifiable or not).
|
/// verifiable or not) to a server (either verifiable or not).
|
||||||
@@ -89,15 +87,12 @@ where
|
|||||||
#[cfg_attr(
|
#[cfg_attr(
|
||||||
feature = "serde",
|
feature = "serde",
|
||||||
derive(serde::Deserialize, serde::Serialize),
|
derive(serde::Deserialize, serde::Serialize),
|
||||||
serde(crate = "serde", bound = "")
|
serde(bound = "")
|
||||||
)]
|
)]
|
||||||
pub struct EvaluationElement<CS: CipherSuite>(
|
pub struct EvaluationElement<CS: CipherSuite>(
|
||||||
#[cfg_attr(feature = "serde", serde(with = "Element::<CS::Group>"))]
|
#[cfg_attr(feature = "serde", serde(with = "Element::<CS::Group>"))]
|
||||||
pub(crate) <CS::Group as Group>::Elem,
|
pub(crate) <CS::Group as Group>::Elem,
|
||||||
)
|
);
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>;
|
|
||||||
|
|
||||||
/// Contains prepared [`EvaluationElement`]s by a server batch evaluate
|
/// Contains prepared [`EvaluationElement`]s by a server batch evaluate
|
||||||
/// preparation.
|
/// preparation.
|
||||||
@@ -106,12 +101,9 @@ where
|
|||||||
#[cfg_attr(
|
#[cfg_attr(
|
||||||
feature = "serde",
|
feature = "serde",
|
||||||
derive(serde::Deserialize, serde::Serialize),
|
derive(serde::Deserialize, serde::Serialize),
|
||||||
serde(crate = "serde", bound = "")
|
serde(bound = "")
|
||||||
)]
|
)]
|
||||||
pub struct PreparedEvaluationElement<CS: CipherSuite>(pub(crate) EvaluationElement<CS>)
|
pub struct PreparedEvaluationElement<CS: CipherSuite>(pub(crate) EvaluationElement<CS>);
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>;
|
|
||||||
|
|
||||||
/// A proof produced by a server that the OPRF output matches against a server
|
/// A proof produced by a server that the OPRF output matches against a server
|
||||||
/// public key.
|
/// public key.
|
||||||
@@ -120,13 +112,9 @@ where
|
|||||||
#[cfg_attr(
|
#[cfg_attr(
|
||||||
feature = "serde",
|
feature = "serde",
|
||||||
derive(serde::Deserialize, serde::Serialize),
|
derive(serde::Deserialize, serde::Serialize),
|
||||||
serde(crate = "serde", bound = "")
|
serde(bound = "")
|
||||||
)]
|
)]
|
||||||
pub struct Proof<CS: CipherSuite>
|
pub struct Proof<CS: CipherSuite> {
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
{
|
|
||||||
#[cfg_attr(feature = "serde", serde(with = "Scalar::<CS::Group>"))]
|
#[cfg_attr(feature = "serde", serde(with = "Scalar::<CS::Group>"))]
|
||||||
pub(crate) c_scalar: <CS::Group as Group>::Scalar,
|
pub(crate) c_scalar: <CS::Group as Group>::Scalar,
|
||||||
#[cfg_attr(feature = "serde", serde(with = "Scalar::<CS::Group>"))]
|
#[cfg_attr(feature = "serde", serde(with = "Scalar::<CS::Group>"))]
|
||||||
@@ -145,15 +133,11 @@ pub(crate) fn generate_proof<CS: CipherSuite, R: RngCore + CryptoRng>(
|
|||||||
k: <CS::Group as Group>::Scalar,
|
k: <CS::Group as Group>::Scalar,
|
||||||
a: <CS::Group as Group>::Elem,
|
a: <CS::Group as Group>::Elem,
|
||||||
b: <CS::Group as Group>::Elem,
|
b: <CS::Group as Group>::Elem,
|
||||||
cs: impl Iterator<Item = <CS::Group as Group>::Elem> + ExactSizeIterator,
|
cs: impl ExactSizeIterator<Item = <CS::Group as Group>::Elem>,
|
||||||
ds: impl Iterator<Item = <CS::Group as Group>::Elem> + ExactSizeIterator,
|
ds: impl ExactSizeIterator<Item = <CS::Group as Group>::Elem>,
|
||||||
mode: Mode,
|
mode: Mode,
|
||||||
) -> Result<Proof<CS>>
|
) -> Result<Proof<CS>> {
|
||||||
where
|
// https://www.rfc-editor.org/rfc/rfc9497#section-2.2.1
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
{
|
|
||||||
// https://www.ietf.org/archive/id/draft-irtf-cfrg-voprf-11.html#section-2.2.1
|
|
||||||
|
|
||||||
let (m, z) = compute_composites::<CS, _, _>(Some(k), b, cs, ds, mode)?;
|
let (m, z) = compute_composites::<CS, _, _>(Some(k), b, cs, ds, mode)?;
|
||||||
|
|
||||||
@@ -194,9 +178,9 @@ where
|
|||||||
&STR_CHALLENGE,
|
&STR_CHALLENGE,
|
||||||
];
|
];
|
||||||
|
|
||||||
let dst = GenericArray::from(STR_HASH_TO_SCALAR).concat(create_context_string::<CS>(mode));
|
let dst = Dst::new::<CS, _, _>(STR_HASH_TO_SCALAR, mode);
|
||||||
// This can't fail, the size of the `input` is known.
|
// This can't fail, the size of the `input` is known.
|
||||||
let c_scalar = CS::Group::hash_to_scalar::<CS::Hash>(&h2_input, &dst).unwrap();
|
let c_scalar = CS::Group::hash_to_scalar::<CS::Hash>(&h2_input, &dst.as_dst()).unwrap();
|
||||||
let s_scalar = r - &(c_scalar * &k);
|
let s_scalar = r - &(c_scalar * &k);
|
||||||
|
|
||||||
Ok(Proof { c_scalar, s_scalar })
|
Ok(Proof { c_scalar, s_scalar })
|
||||||
@@ -207,16 +191,12 @@ where
|
|||||||
pub(crate) fn verify_proof<CS: CipherSuite>(
|
pub(crate) fn verify_proof<CS: CipherSuite>(
|
||||||
a: <CS::Group as Group>::Elem,
|
a: <CS::Group as Group>::Elem,
|
||||||
b: <CS::Group as Group>::Elem,
|
b: <CS::Group as Group>::Elem,
|
||||||
cs: impl Iterator<Item = <CS::Group as Group>::Elem> + ExactSizeIterator,
|
cs: impl ExactSizeIterator<Item = <CS::Group as Group>::Elem>,
|
||||||
ds: impl Iterator<Item = <CS::Group as Group>::Elem> + ExactSizeIterator,
|
ds: impl ExactSizeIterator<Item = <CS::Group as Group>::Elem>,
|
||||||
proof: &Proof<CS>,
|
proof: &Proof<CS>,
|
||||||
mode: Mode,
|
mode: Mode,
|
||||||
) -> Result<()>
|
) -> Result<()> {
|
||||||
where
|
// https://www.rfc-editor.org/rfc/rfc9497#section-2.2.2
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
{
|
|
||||||
// https://www.ietf.org/archive/id/draft-irtf-cfrg-voprf-11.html#section-2.2.2
|
|
||||||
let (m, z) = compute_composites::<CS, _, _>(None, b, cs, ds, mode)?;
|
let (m, z) = compute_composites::<CS, _, _>(None, b, cs, ds, mode)?;
|
||||||
let t2 = (a * &proof.s_scalar) + &(b * &proof.c_scalar);
|
let t2 = (a * &proof.s_scalar) + &(b * &proof.c_scalar);
|
||||||
let t3 = (m * &proof.s_scalar) + &(z * &proof.c_scalar);
|
let t3 = (m * &proof.s_scalar) + &(z * &proof.c_scalar);
|
||||||
@@ -254,9 +234,9 @@ where
|
|||||||
&STR_CHALLENGE,
|
&STR_CHALLENGE,
|
||||||
];
|
];
|
||||||
|
|
||||||
let dst = GenericArray::from(STR_HASH_TO_SCALAR).concat(create_context_string::<CS>(mode));
|
let dst = Dst::new::<CS, _, _>(STR_HASH_TO_SCALAR, mode);
|
||||||
// This can't fail, the size of the `input` is known.
|
// This can't fail, the size of the `input` is known.
|
||||||
let c = CS::Group::hash_to_scalar::<CS::Hash>(&h2_input, &dst).unwrap();
|
let c = CS::Group::hash_to_scalar::<CS::Hash>(&h2_input, &dst.as_dst()).unwrap();
|
||||||
|
|
||||||
match c.ct_eq(&proof.c_scalar).into() {
|
match c.ct_eq(&proof.c_scalar).into() {
|
||||||
true => Ok(()),
|
true => Ok(()),
|
||||||
@@ -280,12 +260,8 @@ fn compute_composites<
|
|||||||
c_slice: IC,
|
c_slice: IC,
|
||||||
d_slice: ID,
|
d_slice: ID,
|
||||||
mode: Mode,
|
mode: Mode,
|
||||||
) -> Result<ComputeCompositesResult<CS>>
|
) -> Result<ComputeCompositesResult<CS>> {
|
||||||
where
|
// https://www.rfc-editor.org/rfc/rfc9497#section-2.2.1
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
{
|
|
||||||
// https://www.ietf.org/archive/id/draft-irtf-cfrg-voprf-11.html#section-2.2.1
|
|
||||||
|
|
||||||
let elem_len = <CS::Group as Group>::ElemLen::U16.to_be_bytes();
|
let elem_len = <CS::Group as Group>::ElemLen::U16.to_be_bytes();
|
||||||
|
|
||||||
@@ -296,18 +272,18 @@ where
|
|||||||
let len = u16::try_from(c_slice.len()).map_err(|_| Error::Batch)?;
|
let len = u16::try_from(c_slice.len()).map_err(|_| Error::Batch)?;
|
||||||
|
|
||||||
// seedDST = "Seed-" || contextString
|
// seedDST = "Seed-" || contextString
|
||||||
let seed_dst = GenericArray::from(STR_SEED).concat(create_context_string::<CS>(mode));
|
let seed_dst = Dst::new::<CS, _, _>(STR_SEED, mode);
|
||||||
|
|
||||||
// h1Input = I2OSP(len(Bm), 2) || Bm ||
|
// h1Input = I2OSP(len(Bm), 2) || Bm ||
|
||||||
// I2OSP(len(seedDST), 2) || seedDST
|
// I2OSP(len(seedDST), 2) || seedDST
|
||||||
// seed = Hash(h1Input)
|
// seed = Hash(h1Input)
|
||||||
let seed = CS::Hash::new()
|
let seed = CS::Hash::new()
|
||||||
.chain_update(&elem_len)
|
.chain_update(elem_len)
|
||||||
.chain_update(CS::Group::serialize_elem(b))
|
.chain_update(CS::Group::serialize_elem(b))
|
||||||
.chain_update(i2osp_2_array(&seed_dst))
|
.chain_update(seed_dst.i2osp_2())
|
||||||
.chain_update(seed_dst)
|
.chain_update_multi(&seed_dst.as_dst())
|
||||||
.finalize();
|
.finalize();
|
||||||
let seed_len = i2osp_2_array(&seed);
|
let seed_len = i2osp_2_array::<<CS::Hash as OutputSizeUser>::OutputSize>();
|
||||||
|
|
||||||
let mut m = CS::Group::identity_elem();
|
let mut m = CS::Group::identity_elem();
|
||||||
let mut z = CS::Group::identity_elem();
|
let mut z = CS::Group::identity_elem();
|
||||||
@@ -332,9 +308,9 @@ where
|
|||||||
&STR_COMPOSITE,
|
&STR_COMPOSITE,
|
||||||
];
|
];
|
||||||
|
|
||||||
let dst = GenericArray::from(STR_HASH_TO_SCALAR).concat(create_context_string::<CS>(mode));
|
let dst = Dst::new::<CS, _, _>(STR_HASH_TO_SCALAR, mode);
|
||||||
// This can't fail, the size of the `input` is known.
|
// This can't fail, the size of the `input` is known.
|
||||||
let di = CS::Group::hash_to_scalar::<CS::Hash>(&h2_input, &dst).unwrap();
|
let di = CS::Group::hash_to_scalar::<CS::Hash>(&h2_input, &dst.as_dst()).unwrap();
|
||||||
m = c * &di + &m;
|
m = c * &di + &m;
|
||||||
z = match k_option {
|
z = match k_option {
|
||||||
Some(_) => z,
|
Some(_) => z,
|
||||||
@@ -360,13 +336,8 @@ pub(crate) fn derive_key_internal<CS: CipherSuite>(
|
|||||||
seed: &[u8],
|
seed: &[u8],
|
||||||
info: &[u8],
|
info: &[u8],
|
||||||
mode: Mode,
|
mode: Mode,
|
||||||
) -> Result<<CS::Group as Group>::Scalar, Error>
|
) -> Result<<CS::Group as Group>::Scalar, Error> {
|
||||||
where
|
let dst = Dst::new::<CS, _, _>(STR_DERIVE_KEYPAIR, mode);
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
{
|
|
||||||
let context_string = create_context_string::<CS>(mode);
|
|
||||||
let dst = GenericArray::from(STR_DERIVE_KEYPAIR).concat(context_string);
|
|
||||||
|
|
||||||
let info_len = i2osp_2(info.len()).map_err(|_| Error::DeriveKeyPair)?;
|
let info_len = i2osp_2(info.len()).map_err(|_| Error::DeriveKeyPair)?;
|
||||||
|
|
||||||
@@ -376,7 +347,7 @@ where
|
|||||||
// || contextString)
|
// || contextString)
|
||||||
let sk_s = CS::Group::hash_to_scalar::<CS::Hash>(
|
let sk_s = CS::Group::hash_to_scalar::<CS::Hash>(
|
||||||
&[seed, &info_len, info, &counter.to_be_bytes()],
|
&[seed, &info_len, info, &counter.to_be_bytes()],
|
||||||
&dst,
|
&dst.as_dst(),
|
||||||
)
|
)
|
||||||
.map_err(|_| Error::DeriveKeyPair)?;
|
.map_err(|_| Error::DeriveKeyPair)?;
|
||||||
|
|
||||||
@@ -388,17 +359,18 @@ where
|
|||||||
Err(Error::Protocol)
|
Err(Error::Protocol)
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Can only fail with [`Error::DeriveKeyPair`] and [`Error::Protocol`].
|
/// Corresponds to DeriveKeyPair() function from the VOPRF specification.
|
||||||
|
///
|
||||||
|
/// # Errors
|
||||||
|
/// - [`Error::DeriveKeyPair`] if the `input` and `seed` together are longer
|
||||||
|
/// then `u16::MAX - 3`.
|
||||||
|
/// - [`Error::Protocol`] if the protocol fails and can't be completed.
|
||||||
#[cfg(feature = "danger")]
|
#[cfg(feature = "danger")]
|
||||||
pub fn derive_key<CS: CipherSuite>(
|
pub fn derive_key<CS: CipherSuite>(
|
||||||
seed: &[u8],
|
seed: &[u8],
|
||||||
info: &[u8],
|
info: &[u8],
|
||||||
mode: Mode,
|
mode: Mode,
|
||||||
) -> Result<<CS::Group as Group>::Scalar, Error>
|
) -> Result<<CS::Group as Group>::Scalar, Error> {
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
{
|
|
||||||
derive_key_internal::<CS>(seed, info, mode)
|
derive_key_internal::<CS>(seed, info, mode)
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -412,11 +384,7 @@ pub(crate) fn derive_keypair<CS: CipherSuite>(
|
|||||||
seed: &[u8],
|
seed: &[u8],
|
||||||
info: &[u8],
|
info: &[u8],
|
||||||
mode: Mode,
|
mode: Mode,
|
||||||
) -> Result<DeriveKeypairResult<CS>, Error>
|
) -> Result<DeriveKeypairResult<CS>, Error> {
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
{
|
|
||||||
let sk_s = derive_key_internal::<CS>(seed, info, mode)?;
|
let sk_s = derive_key_internal::<CS>(seed, info, mode)?;
|
||||||
let pk_s = CS::Group::base_elem() * &sk_s;
|
let pk_s = CS::Group::base_elem() * &sk_s;
|
||||||
|
|
||||||
@@ -432,11 +400,7 @@ pub(crate) fn deterministic_blind_unchecked<CS: CipherSuite>(
|
|||||||
input: &[u8],
|
input: &[u8],
|
||||||
blind: &<CS::Group as Group>::Scalar,
|
blind: &<CS::Group as Group>::Scalar,
|
||||||
mode: Mode,
|
mode: Mode,
|
||||||
) -> Result<<CS::Group as Group>::Elem>
|
) -> Result<<CS::Group as Group>::Elem> {
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
{
|
|
||||||
let hashed_point = hash_to_group::<CS>(input, mode)?;
|
let hashed_point = hash_to_group::<CS>(input, mode)?;
|
||||||
Ok(hashed_point * blind)
|
Ok(hashed_point * blind)
|
||||||
}
|
}
|
||||||
@@ -445,13 +409,9 @@ where
|
|||||||
pub(crate) fn hash_to_group<CS: CipherSuite>(
|
pub(crate) fn hash_to_group<CS: CipherSuite>(
|
||||||
input: &[u8],
|
input: &[u8],
|
||||||
mode: Mode,
|
mode: Mode,
|
||||||
) -> Result<<CS::Group as Group>::Elem>
|
) -> Result<<CS::Group as Group>::Elem> {
|
||||||
where
|
let dst = Dst::new::<CS, _, _>(STR_HASH_TO_GROUP, mode);
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
CS::Group::hash_to_curve::<CS::Hash>(&[input], &dst.as_dst()).map_err(|_| Error::Input)
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
{
|
|
||||||
let dst = GenericArray::from(STR_HASH_TO_GROUP).concat(create_context_string::<CS>(mode));
|
|
||||||
CS::Group::hash_to_curve::<CS::Hash>(&[input], &dst).map_err(|_| Error::Input)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Internal function that finalizes the hash input for OPRF, VOPRF & POPRF.
|
/// Internal function that finalizes the hash input for OPRF, VOPRF & POPRF.
|
||||||
@@ -460,11 +420,7 @@ pub(crate) fn server_evaluate_hash_input<CS: CipherSuite>(
|
|||||||
input: &[u8],
|
input: &[u8],
|
||||||
info: Option<&[u8]>,
|
info: Option<&[u8]>,
|
||||||
issued_element: GenericArray<u8, <<CS as CipherSuite>::Group as Group>::ElemLen>,
|
issued_element: GenericArray<u8, <<CS as CipherSuite>::Group as Group>::ElemLen>,
|
||||||
) -> Result<Output<CS::Hash>>
|
) -> Result<Output<CS::Hash>> {
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
{
|
|
||||||
// OPRF & VOPRF
|
// OPRF & VOPRF
|
||||||
// hashInput = I2OSP(len(input), 2) || input ||
|
// hashInput = I2OSP(len(input), 2) || input ||
|
||||||
// I2OSP(len(issuedElement), 2) || issuedElement ||
|
// I2OSP(len(issuedElement), 2) || issuedElement ||
|
||||||
@@ -486,22 +442,69 @@ where
|
|||||||
.chain_update(info.as_ref());
|
.chain_update(info.as_ref());
|
||||||
}
|
}
|
||||||
Ok(hash
|
Ok(hash
|
||||||
.chain_update(i2osp_2(issued_element.as_ref().len()).map_err(|_| Error::Input)?)
|
.chain_update(i2osp_2(issued_element.as_slice().len()).map_err(|_| Error::Input)?)
|
||||||
.chain_update(issued_element)
|
.chain_update(issued_element)
|
||||||
.chain_update(STR_FINALIZE)
|
.chain_update(STR_FINALIZE)
|
||||||
.finalize())
|
.finalize())
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Generates the contextString parameter as defined in
|
pub(crate) struct Dst<L: ArrayLength> {
|
||||||
/// <https://datatracker.ietf.org/doc/draft-irtf-cfrg-voprf/>
|
dst_1: GenericArray<u8, L>,
|
||||||
pub(crate) fn create_context_string<CS: CipherSuite>(mode: Mode) -> GenericArray<u8, U11>
|
dst_2: &'static str,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl<L: ArrayLength> Dst<L> {
|
||||||
|
pub(crate) fn new<CS, T, TL>(par_1: T, mode: Mode) -> Self
|
||||||
|
where
|
||||||
|
CS: CipherSuite,
|
||||||
|
T: Into<GenericArray<u8, TL>>,
|
||||||
|
TL: ArrayLength + Add<U9, Output = L>,
|
||||||
|
{
|
||||||
|
let par_1 = par_1.into();
|
||||||
|
// Generates the contextString parameter as defined in
|
||||||
|
// <https://www.rfc-editor.org/rfc/rfc9497#section-3.1>
|
||||||
|
let par_2 = GenericArray::from(STR_OPRF)
|
||||||
|
.concat([mode.to_u8()].into())
|
||||||
|
.concat([b'-'].into());
|
||||||
|
|
||||||
|
let dst_1 = par_1.concat(par_2);
|
||||||
|
let dst_2 = CS::ID;
|
||||||
|
|
||||||
|
assert!(
|
||||||
|
L::USIZE + dst_2.len() <= u16::MAX.into(),
|
||||||
|
"constructed DST longer then {}",
|
||||||
|
u16::MAX
|
||||||
|
);
|
||||||
|
|
||||||
|
Self { dst_1, dst_2 }
|
||||||
|
}
|
||||||
|
|
||||||
|
pub(crate) fn as_dst(&self) -> [&[u8]; 2] {
|
||||||
|
[&self.dst_1, self.dst_2.as_bytes()]
|
||||||
|
}
|
||||||
|
|
||||||
|
pub(crate) fn i2osp_2(&self) -> [u8; 2] {
|
||||||
|
u16::try_from(L::USIZE + self.dst_2.len())
|
||||||
|
.unwrap()
|
||||||
|
.to_be_bytes()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
trait DigestExt {
|
||||||
|
fn chain_update_multi(self, data: &[&[u8]]) -> Self;
|
||||||
|
}
|
||||||
|
|
||||||
|
impl<T> DigestExt for T
|
||||||
where
|
where
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
T: Digest,
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
{
|
{
|
||||||
GenericArray::from(STR_VOPRF)
|
fn chain_update_multi(mut self, datas: &[&[u8]]) -> Self {
|
||||||
.concat([mode.to_u8()].into())
|
for data in datas {
|
||||||
.concat(CS::ID.to_be_bytes().into())
|
self.update(data)
|
||||||
|
}
|
||||||
|
|
||||||
|
self
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
///////////////////////
|
///////////////////////
|
||||||
@@ -515,8 +518,6 @@ pub(crate) fn i2osp_2(input: usize) -> Result<[u8; 2], InternalError> {
|
|||||||
.map_err(|_| InternalError::I2osp)
|
.map_err(|_| InternalError::I2osp)
|
||||||
}
|
}
|
||||||
|
|
||||||
pub(crate) fn i2osp_2_array<L: ArrayLength<u8> + IsLess<U256>>(
|
pub(crate) fn i2osp_2_array<L: ArrayLength + IsLess<U256>>() -> GenericArray<u8, U2> {
|
||||||
_: &GenericArray<u8, L>,
|
|
||||||
) -> GenericArray<u8, U2> {
|
|
||||||
L::U16.to_be_bytes().into()
|
L::U16.to_be_bytes().into()
|
||||||
}
|
}
|
||||||
|
|||||||
+7
-9
@@ -1,19 +1,18 @@
|
|||||||
// Copyright (c) Facebook, Inc. and its affiliates.
|
// Copyright (c) Meta Platforms, Inc. and affiliates.
|
||||||
//
|
//
|
||||||
// This source code is licensed under both the MIT license found in the
|
// 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 and the Apache
|
// 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
|
// License, Version 2.0 found in the LICENSE-APACHE file in the root directory
|
||||||
// of this source tree.
|
// of this source tree. You may select, at your option, one of the above-listed
|
||||||
|
// licenses.
|
||||||
|
|
||||||
//! Errors which are produced during an execution of the protocol
|
//! Errors which are produced during an execution of the protocol
|
||||||
|
|
||||||
use displaydoc::Display;
|
|
||||||
|
|
||||||
/// [`Result`](core::result::Result) shorthand that uses [`Error`].
|
/// [`Result`](core::result::Result) shorthand that uses [`Error`].
|
||||||
pub type Result<T, E = Error> = core::result::Result<T, E>;
|
pub type Result<T, E = Error> = core::result::Result<T, E>;
|
||||||
|
|
||||||
/// Represents an error in the manipulation of internal cryptographic data
|
/// Represents an error in the manipulation of internal cryptographic data
|
||||||
#[derive(Clone, Copy, Debug, Display, Eq, Hash, Ord, PartialEq, PartialOrd)]
|
#[derive(Clone, Copy, Debug, displaydoc::Display, Eq, Hash, Ord, PartialEq, PartialOrd)]
|
||||||
pub enum Error {
|
pub enum Error {
|
||||||
/// Size of info is longer then [`u16::MAX`].
|
/// Size of info is longer then [`u16::MAX`].
|
||||||
Info,
|
Info,
|
||||||
@@ -40,5 +39,4 @@ pub enum InternalError {
|
|||||||
I2osp,
|
I2osp,
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(feature = "std")]
|
impl core::error::Error for Error {}
|
||||||
impl std::error::Error for Error {}
|
|
||||||
|
|||||||
+37
-19
@@ -1,55 +1,70 @@
|
|||||||
// Copyright (c) Facebook, Inc. and its affiliates.
|
// Copyright (c) Meta Platforms, Inc. and affiliates.
|
||||||
//
|
//
|
||||||
// This source code is licensed under both the MIT license found in the
|
// 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 and the Apache
|
// 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
|
// License, Version 2.0 found in the LICENSE-APACHE file in the root directory
|
||||||
// of this source tree.
|
// of this source tree. You may select, at your option, one of the above-listed
|
||||||
|
// licenses.
|
||||||
|
|
||||||
|
use core::ops::Add;
|
||||||
|
|
||||||
use digest::core_api::BlockSizeUser;
|
use digest::core_api::BlockSizeUser;
|
||||||
use digest::Digest;
|
use digest::{FixedOutput, HashMarker};
|
||||||
use elliptic_curve::group::cofactor::CofactorGroup;
|
use elliptic_curve::group::cofactor::CofactorGroup;
|
||||||
use elliptic_curve::hash2curve::{ExpandMsgXmd, FromOkm, GroupDigest};
|
use elliptic_curve::hash2curve::{ExpandMsgXmd, FromOkm, GroupDigest};
|
||||||
use elliptic_curve::sec1::{FromEncodedPoint, ModulusSize, ToEncodedPoint};
|
use elliptic_curve::sec1::{FromEncodedPoint, ModulusSize, ToEncodedPoint};
|
||||||
use elliptic_curve::{
|
use elliptic_curve::{
|
||||||
AffinePoint, Field, FieldSize, Group as _, ProjectivePoint, PublicKey, Scalar, SecretKey,
|
AffinePoint, Field, FieldBytes, FieldBytesSize, Group as _, ProjectivePoint, PublicKey, Scalar,
|
||||||
|
SecretKey,
|
||||||
};
|
};
|
||||||
use generic_array::typenum::{IsLess, IsLessOrEqual, U256};
|
use generic_array::typenum::{IsLess, IsLessOrEqual, Sum, U256};
|
||||||
use generic_array::GenericArray;
|
use generic_array::{ArrayLength, GenericArray};
|
||||||
use rand_core::{CryptoRng, RngCore};
|
use rand_core::{CryptoRng, RngCore};
|
||||||
|
|
||||||
use super::Group;
|
use super::Group;
|
||||||
use crate::{Error, InternalError, Result};
|
use crate::{Error, InternalError, Result};
|
||||||
|
|
||||||
|
type ElemLen<C> = <ScalarLen<C> as ModulusSize>::CompressedPointSize;
|
||||||
|
type ScalarLen<C> = FieldBytesSize<C>;
|
||||||
|
|
||||||
impl<C> Group for C
|
impl<C> Group for C
|
||||||
where
|
where
|
||||||
C: GroupDigest,
|
C: GroupDigest,
|
||||||
ProjectivePoint<Self>: CofactorGroup + ToEncodedPoint<Self>,
|
ProjectivePoint<Self>: CofactorGroup + ToEncodedPoint<Self>,
|
||||||
FieldSize<Self>: ModulusSize,
|
ScalarLen<Self>: ModulusSize,
|
||||||
|
ScalarLen<Self>: ArrayLength,
|
||||||
AffinePoint<Self>: FromEncodedPoint<Self> + ToEncodedPoint<Self>,
|
AffinePoint<Self>: FromEncodedPoint<Self> + ToEncodedPoint<Self>,
|
||||||
Scalar<Self>: FromOkm,
|
Scalar<Self>: FromOkm,
|
||||||
|
// `VoprfClientLen`, `PoprfClientLen`, `VoprfServerLen`, `PoprfServerLen`
|
||||||
|
ScalarLen<Self>: Add<ElemLen<Self>>,
|
||||||
|
Sum<ScalarLen<Self>, ElemLen<Self>>: ArrayLength,
|
||||||
|
// `ProofLen`
|
||||||
|
ScalarLen<Self>: Add<ScalarLen<Self>>,
|
||||||
|
Sum<ScalarLen<Self>, ScalarLen<Self>>: ArrayLength,
|
||||||
|
ElemLen<Self>: ArrayLength,
|
||||||
{
|
{
|
||||||
type Elem = ProjectivePoint<Self>;
|
type Elem = ProjectivePoint<Self>;
|
||||||
|
|
||||||
type ElemLen = <FieldSize<Self> as ModulusSize>::CompressedPointSize;
|
type ElemLen = ElemLen<Self>;
|
||||||
|
|
||||||
type Scalar = Scalar<Self>;
|
type Scalar = Scalar<Self>;
|
||||||
|
|
||||||
type ScalarLen = FieldSize<Self>;
|
type ScalarLen = ScalarLen<Self>;
|
||||||
|
|
||||||
// Implements the `hash_to_curve()` function from
|
// Implements the `hash_to_curve()` function from
|
||||||
// https://datatracker.ietf.org/doc/html/draft-irtf-cfrg-hash-to-curve-11#section-3
|
// https://www.rfc-editor.org/rfc/rfc9380.html#section-3
|
||||||
fn hash_to_curve<H>(input: &[&[u8]], dst: &[u8]) -> Result<Self::Elem, InternalError>
|
fn hash_to_curve<H>(input: &[&[u8]], dst: &[&[u8]]) -> Result<Self::Elem, InternalError>
|
||||||
where
|
where
|
||||||
H: Digest + BlockSizeUser,
|
H: BlockSizeUser + Default + FixedOutput + HashMarker,
|
||||||
H::OutputSize: IsLess<U256> + IsLessOrEqual<H::BlockSize>,
|
H::OutputSize: IsLess<U256> + IsLessOrEqual<H::BlockSize>,
|
||||||
{
|
{
|
||||||
Self::hash_from_bytes::<ExpandMsgXmd<H>>(input, dst).map_err(|_| InternalError::Input)
|
Self::hash_from_bytes::<ExpandMsgXmd<H>>(input, dst).map_err(|_| InternalError::Input)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Implements the `HashToScalar()` function
|
// Implements the `HashToScalar()` function
|
||||||
fn hash_to_scalar<H>(input: &[&[u8]], dst: &[u8]) -> Result<Self::Scalar, InternalError>
|
fn hash_to_scalar<H>(input: &[&[u8]], dst: &[&[u8]]) -> Result<Self::Scalar, InternalError>
|
||||||
where
|
where
|
||||||
H: Digest + BlockSizeUser,
|
H: BlockSizeUser + Default + FixedOutput + HashMarker,
|
||||||
H::OutputSize: IsLess<U256> + IsLessOrEqual<H::BlockSize>,
|
H::OutputSize: IsLess<U256> + IsLessOrEqual<H::BlockSize>,
|
||||||
{
|
{
|
||||||
<Self as GroupDigest>::hash_to_scalar::<ExpandMsgXmd<H>>(input, dst)
|
<Self as GroupDigest>::hash_to_scalar::<ExpandMsgXmd<H>>(input, dst)
|
||||||
@@ -92,15 +107,18 @@ where
|
|||||||
|
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
fn zero_scalar() -> Self::Scalar {
|
fn zero_scalar() -> Self::Scalar {
|
||||||
Scalar::<Self>::zero()
|
Scalar::<Self>::ZERO
|
||||||
}
|
}
|
||||||
|
|
||||||
fn serialize_scalar(scalar: Self::Scalar) -> GenericArray<u8, Self::ScalarLen> {
|
fn serialize_scalar(scalar: Self::Scalar) -> GenericArray<u8, Self::ScalarLen> {
|
||||||
scalar.into()
|
let bytes: FieldBytes<Self> = scalar.into();
|
||||||
|
let mut result = GenericArray::<u8, Self::ScalarLen>::default();
|
||||||
|
result.as_mut_slice().copy_from_slice(bytes.as_ref());
|
||||||
|
result
|
||||||
}
|
}
|
||||||
|
|
||||||
fn deserialize_scalar(scalar_bits: &[u8]) -> Result<Self::Scalar> {
|
fn deserialize_scalar(scalar_bits: &[u8]) -> Result<Self::Scalar> {
|
||||||
SecretKey::<Self>::from_be_bytes(scalar_bits)
|
SecretKey::<Self>::from_slice(scalar_bits)
|
||||||
.map(|secret_key| *secret_key.to_nonzero_scalar())
|
.map(|secret_key| *secret_key.to_nonzero_scalar())
|
||||||
.map_err(|_| Error::Deserialization)
|
.map_err(|_| Error::Deserialization)
|
||||||
}
|
}
|
||||||
|
|||||||
+23
-14
@@ -1,9 +1,10 @@
|
|||||||
// Copyright (c) Facebook, Inc. and its affiliates.
|
// Copyright (c) Meta Platforms, Inc. and affiliates.
|
||||||
//
|
//
|
||||||
// This source code is licensed under both the MIT license found in the
|
// 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 and the Apache
|
// 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
|
// License, Version 2.0 found in the LICENSE-APACHE file in the root directory
|
||||||
// of this source tree.
|
// of this source tree. You may select, at your option, one of the above-listed
|
||||||
|
// licenses.
|
||||||
|
|
||||||
//! Defines the Group trait to specify the underlying prime order group
|
//! Defines the Group trait to specify the underlying prime order group
|
||||||
|
|
||||||
@@ -14,8 +15,8 @@ mod ristretto;
|
|||||||
use core::ops::{Add, Mul, Sub};
|
use core::ops::{Add, Mul, Sub};
|
||||||
|
|
||||||
use digest::core_api::BlockSizeUser;
|
use digest::core_api::BlockSizeUser;
|
||||||
use digest::Digest;
|
use digest::{FixedOutput, HashMarker};
|
||||||
use generic_array::typenum::{IsLess, IsLessOrEqual, U256};
|
use generic_array::typenum::{IsLess, IsLessOrEqual, Sum, U256};
|
||||||
use generic_array::{ArrayLength, GenericArray};
|
use generic_array::{ArrayLength, GenericArray};
|
||||||
use rand_core::{CryptoRng, RngCore};
|
use rand_core::{CryptoRng, RngCore};
|
||||||
#[cfg(feature = "ristretto255")]
|
#[cfg(feature = "ristretto255")]
|
||||||
@@ -26,8 +27,16 @@ use zeroize::Zeroize;
|
|||||||
use crate::{InternalError, Result};
|
use crate::{InternalError, Result};
|
||||||
|
|
||||||
/// A prime-order subgroup of a base field (EC, prime-order field ...). This
|
/// A prime-order subgroup of a base field (EC, prime-order field ...). This
|
||||||
/// subgroup is noted additively — as in the draft RFC — in this trait.
|
/// subgroup is noted additively — as in the RFC — in this trait.
|
||||||
pub trait Group {
|
pub trait Group
|
||||||
|
where
|
||||||
|
// `VoprfClientLen`, `PoprfClientLen`, `VoprfServerLen`, `PoprfServerLen`
|
||||||
|
Self::ScalarLen: Add<Self::ElemLen>,
|
||||||
|
Sum<Self::ScalarLen, Self::ElemLen>: ArrayLength,
|
||||||
|
// `ProofLen`
|
||||||
|
Self::ScalarLen: Add<Self::ScalarLen>,
|
||||||
|
Sum<Self::ScalarLen, Self::ScalarLen>: ArrayLength,
|
||||||
|
{
|
||||||
/// The type of group elements
|
/// The type of group elements
|
||||||
type Elem: ConstantTimeEq
|
type Elem: ConstantTimeEq
|
||||||
+ Copy
|
+ Copy
|
||||||
@@ -36,7 +45,7 @@ pub trait Group {
|
|||||||
+ for<'a> Mul<&'a Self::Scalar, Output = Self::Elem>;
|
+ for<'a> Mul<&'a Self::Scalar, Output = Self::Elem>;
|
||||||
|
|
||||||
/// The byte length necessary to represent group elements
|
/// The byte length necessary to represent group elements
|
||||||
type ElemLen: ArrayLength<u8> + 'static;
|
type ElemLen: ArrayLength + 'static;
|
||||||
|
|
||||||
/// The type of base field scalars
|
/// The type of base field scalars
|
||||||
type Scalar: ConstantTimeEq
|
type Scalar: ConstantTimeEq
|
||||||
@@ -47,16 +56,16 @@ pub trait Group {
|
|||||||
+ for<'a> Sub<&'a Self::Scalar, Output = Self::Scalar>;
|
+ for<'a> Sub<&'a Self::Scalar, Output = Self::Scalar>;
|
||||||
|
|
||||||
/// The byte length necessary to represent scalars
|
/// The byte length necessary to represent scalars
|
||||||
type ScalarLen: ArrayLength<u8> + 'static;
|
type ScalarLen: ArrayLength + 'static;
|
||||||
|
|
||||||
/// Transforms a password and domain separation tag (DST) into a curve point
|
/// Transforms a password and domain separation tag (DST) into a curve point
|
||||||
///
|
///
|
||||||
/// # Errors
|
/// # Errors
|
||||||
/// [`Error::Input`](crate::Error::Input) if the `input` is empty or longer
|
/// [`Error::Input`](crate::Error::Input) if the `input` is empty or longer
|
||||||
/// then [`u16::MAX`].
|
/// then [`u16::MAX`].
|
||||||
fn hash_to_curve<H>(input: &[&[u8]], dst: &[u8]) -> Result<Self::Elem, InternalError>
|
fn hash_to_curve<H>(input: &[&[u8]], dst: &[&[u8]]) -> Result<Self::Elem, InternalError>
|
||||||
where
|
where
|
||||||
H: Digest + BlockSizeUser,
|
H: BlockSizeUser + Default + FixedOutput + HashMarker,
|
||||||
H::OutputSize: IsLess<U256> + IsLessOrEqual<H::BlockSize>;
|
H::OutputSize: IsLess<U256> + IsLessOrEqual<H::BlockSize>;
|
||||||
|
|
||||||
/// Hashes a slice of pseudo-random bytes to a scalar
|
/// Hashes a slice of pseudo-random bytes to a scalar
|
||||||
@@ -64,9 +73,9 @@ pub trait Group {
|
|||||||
/// # Errors
|
/// # Errors
|
||||||
/// [`Error::Input`](crate::Error::Input) if the `input` is empty or longer
|
/// [`Error::Input`](crate::Error::Input) if the `input` is empty or longer
|
||||||
/// then [`u16::MAX`].
|
/// then [`u16::MAX`].
|
||||||
fn hash_to_scalar<H>(input: &[&[u8]], dst: &[u8]) -> Result<Self::Scalar, InternalError>
|
fn hash_to_scalar<H>(input: &[&[u8]], dst: &[&[u8]]) -> Result<Self::Scalar, InternalError>
|
||||||
where
|
where
|
||||||
H: Digest + BlockSizeUser,
|
H: BlockSizeUser + Default + FixedOutput + HashMarker,
|
||||||
H::OutputSize: IsLess<U256> + IsLessOrEqual<H::BlockSize>;
|
H::OutputSize: IsLess<U256> + IsLessOrEqual<H::BlockSize>;
|
||||||
|
|
||||||
/// Get the base point for the group
|
/// Get the base point for the group
|
||||||
|
|||||||
+21
-26
@@ -1,16 +1,17 @@
|
|||||||
// Copyright (c) Facebook, Inc. and its affiliates.
|
// Copyright (c) Meta Platforms, Inc. and affiliates.
|
||||||
//
|
//
|
||||||
// This source code is licensed under both the MIT license found in the
|
// 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 and the Apache
|
// 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
|
// License, Version 2.0 found in the LICENSE-APACHE file in the root directory
|
||||||
// of this source tree.
|
// of this source tree. You may select, at your option, one of the above-listed
|
||||||
|
// licenses.
|
||||||
|
|
||||||
use curve25519_dalek::constants::RISTRETTO_BASEPOINT_POINT;
|
use curve25519_dalek::constants::RISTRETTO_BASEPOINT_POINT;
|
||||||
use curve25519_dalek::ristretto::{CompressedRistretto, RistrettoPoint};
|
use curve25519_dalek::ristretto::{CompressedRistretto, RistrettoPoint};
|
||||||
use curve25519_dalek::scalar::Scalar;
|
use curve25519_dalek::scalar::Scalar;
|
||||||
use curve25519_dalek::traits::Identity;
|
use curve25519_dalek::traits::Identity;
|
||||||
use digest::core_api::BlockSizeUser;
|
use digest::core_api::BlockSizeUser;
|
||||||
use digest::Digest;
|
use digest::{FixedOutput, HashMarker};
|
||||||
use elliptic_curve::hash2curve::{ExpandMsg, ExpandMsgXmd, Expander};
|
use elliptic_curve::hash2curve::{ExpandMsg, ExpandMsgXmd, Expander};
|
||||||
use generic_array::typenum::{IsLess, IsLessOrEqual, U256, U32, U64};
|
use generic_array::typenum::{IsLess, IsLessOrEqual, U256, U32, U64};
|
||||||
use generic_array::GenericArray;
|
use generic_array::GenericArray;
|
||||||
@@ -22,21 +23,17 @@ use crate::{Error, InternalError, Result};
|
|||||||
|
|
||||||
/// [`Group`] implementation for Ristretto255.
|
/// [`Group`] implementation for Ristretto255.
|
||||||
#[derive(Clone, Copy, Debug, Default, Eq, Hash, Ord, PartialEq, PartialOrd)]
|
#[derive(Clone, Copy, Debug, Default, Eq, Hash, Ord, PartialEq, PartialOrd)]
|
||||||
// `cfg` here is only needed because of a bug in Rust's crate feature documentation. See: https://github.com/rust-lang/rust/issues/83428
|
|
||||||
#[cfg(feature = "ristretto255")]
|
|
||||||
pub struct Ristretto255;
|
pub struct Ristretto255;
|
||||||
|
|
||||||
#[cfg(feature = "ristretto255-ciphersuite")]
|
#[cfg(feature = "ristretto255-ciphersuite")]
|
||||||
impl crate::CipherSuite for Ristretto255 {
|
impl crate::CipherSuite for Ristretto255 {
|
||||||
const ID: u16 = 0x0001;
|
const ID: &'static str = "ristretto255-SHA512";
|
||||||
|
|
||||||
type Group = Ristretto255;
|
type Group = Ristretto255;
|
||||||
|
|
||||||
type Hash = sha2::Sha512;
|
type Hash = sha2::Sha512;
|
||||||
}
|
}
|
||||||
|
|
||||||
// `cfg` here is only needed because of a bug in Rust's crate feature documentation. See: https://github.com/rust-lang/rust/issues/83428
|
|
||||||
#[cfg(feature = "ristretto255")]
|
|
||||||
impl Group for Ristretto255 {
|
impl Group for Ristretto255 {
|
||||||
type Elem = RistrettoPoint;
|
type Elem = RistrettoPoint;
|
||||||
|
|
||||||
@@ -47,10 +44,10 @@ impl Group for Ristretto255 {
|
|||||||
type ScalarLen = U32;
|
type ScalarLen = U32;
|
||||||
|
|
||||||
// Implements the `hash_to_ristretto255()` function from
|
// Implements the `hash_to_ristretto255()` function from
|
||||||
// https://www.ietf.org/archive/id/draft-irtf-cfrg-hash-to-curve-10.txt
|
// https://www.rfc-editor.org/rfc/rfc9380.html#appendix-B
|
||||||
fn hash_to_curve<H>(input: &[&[u8]], dst: &[u8]) -> Result<Self::Elem, InternalError>
|
fn hash_to_curve<H>(input: &[&[u8]], dst: &[&[u8]]) -> Result<Self::Elem, InternalError>
|
||||||
where
|
where
|
||||||
H: Digest + BlockSizeUser,
|
H: BlockSizeUser + Default + FixedOutput + HashMarker,
|
||||||
H::OutputSize: IsLess<U256> + IsLessOrEqual<H::BlockSize>,
|
H::OutputSize: IsLess<U256> + IsLessOrEqual<H::BlockSize>,
|
||||||
{
|
{
|
||||||
let mut uniform_bytes = GenericArray::<_, U64>::default();
|
let mut uniform_bytes = GenericArray::<_, U64>::default();
|
||||||
@@ -62,10 +59,10 @@ impl Group for Ristretto255 {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Implements the `HashToScalar()` function from
|
// Implements the `HashToScalar()` function from
|
||||||
// https://www.ietf.org/archive/id/draft-irtf-cfrg-voprf-07.html#section-4.1
|
// https://www.rfc-editor.org/rfc/rfc9497#section-4.1
|
||||||
fn hash_to_scalar<H>(input: &[&[u8]], dst: &[u8]) -> Result<Self::Scalar, InternalError>
|
fn hash_to_scalar<H>(input: &[&[u8]], dst: &[&[u8]]) -> Result<Self::Scalar, InternalError>
|
||||||
where
|
where
|
||||||
H: Digest + BlockSizeUser,
|
H: BlockSizeUser + Default + FixedOutput + HashMarker,
|
||||||
H::OutputSize: IsLess<U256> + IsLessOrEqual<H::BlockSize>,
|
H::OutputSize: IsLess<U256> + IsLessOrEqual<H::BlockSize>,
|
||||||
{
|
{
|
||||||
let mut uniform_bytes = GenericArray::<_, U64>::default();
|
let mut uniform_bytes = GenericArray::<_, U64>::default();
|
||||||
@@ -90,11 +87,8 @@ impl Group for Ristretto255 {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fn deserialize_elem(element_bits: &[u8]) -> Result<Self::Elem> {
|
fn deserialize_elem(element_bits: &[u8]) -> Result<Self::Elem> {
|
||||||
if element_bits.len() != 32 {
|
|
||||||
return Err(Error::Deserialization);
|
|
||||||
}
|
|
||||||
|
|
||||||
CompressedRistretto::from_slice(element_bits)
|
CompressedRistretto::from_slice(element_bits)
|
||||||
|
.map_err(|_| Error::Deserialization)?
|
||||||
.decompress()
|
.decompress()
|
||||||
.filter(|point| point != &RistrettoPoint::identity())
|
.filter(|point| point != &RistrettoPoint::identity())
|
||||||
.ok_or(Error::Deserialization)
|
.ok_or(Error::Deserialization)
|
||||||
@@ -102,9 +96,10 @@ impl Group for Ristretto255 {
|
|||||||
|
|
||||||
fn random_scalar<R: RngCore + CryptoRng>(rng: &mut R) -> Self::Scalar {
|
fn random_scalar<R: RngCore + CryptoRng>(rng: &mut R) -> Self::Scalar {
|
||||||
loop {
|
loop {
|
||||||
let scalar = Scalar::random(rng);
|
let mut scalar_bytes = [0u8; 32];
|
||||||
|
rng.fill_bytes(&mut scalar_bytes);
|
||||||
|
|
||||||
if scalar != Scalar::zero() {
|
if let Ok(scalar) = Self::deserialize_scalar(&scalar_bytes) {
|
||||||
break scalar;
|
break scalar;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -115,12 +110,12 @@ impl Group for Ristretto255 {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fn is_zero_scalar(scalar: Self::Scalar) -> subtle::Choice {
|
fn is_zero_scalar(scalar: Self::Scalar) -> subtle::Choice {
|
||||||
scalar.ct_eq(&Scalar::zero())
|
scalar.ct_eq(&Scalar::ZERO)
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
fn zero_scalar() -> Self::Scalar {
|
fn zero_scalar() -> Self::Scalar {
|
||||||
Scalar::zero()
|
Scalar::ZERO
|
||||||
}
|
}
|
||||||
|
|
||||||
fn serialize_scalar(scalar: Self::Scalar) -> GenericArray<u8, Self::ScalarLen> {
|
fn serialize_scalar(scalar: Self::Scalar) -> GenericArray<u8, Self::ScalarLen> {
|
||||||
@@ -131,8 +126,8 @@ impl Group for Ristretto255 {
|
|||||||
scalar_bits
|
scalar_bits
|
||||||
.try_into()
|
.try_into()
|
||||||
.ok()
|
.ok()
|
||||||
.and_then(Scalar::from_canonical_bytes)
|
.and_then(|bytes| Scalar::from_canonical_bytes(bytes).into())
|
||||||
.filter(|scalar| scalar != &Scalar::zero())
|
.filter(|scalar| scalar != &Scalar::ZERO)
|
||||||
.ok_or(Error::Deserialization)
|
.ok_or(Error::Deserialization)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+13
-4
@@ -1,9 +1,10 @@
|
|||||||
// Copyright (c) Facebook, Inc. and its affiliates.
|
// Copyright (c) Meta Platforms, Inc. and affiliates.
|
||||||
//
|
//
|
||||||
// This source code is licensed under both the MIT license found in the
|
// 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 and the Apache
|
// 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
|
// License, Version 2.0 found in the LICENSE-APACHE file in the root directory
|
||||||
// of this source tree.
|
// of this source tree. You may select, at your option, one of the above-listed
|
||||||
|
// licenses.
|
||||||
|
|
||||||
//! Includes a series of tests for the group implementations
|
//! Includes a series of tests for the group implementations
|
||||||
|
|
||||||
@@ -15,6 +16,8 @@ use crate::{Error, Group, Result};
|
|||||||
#[test]
|
#[test]
|
||||||
fn test_group_properties() -> Result<()> {
|
fn test_group_properties() -> Result<()> {
|
||||||
use p256::NistP256;
|
use p256::NistP256;
|
||||||
|
use p384::NistP384;
|
||||||
|
use p521::NistP521;
|
||||||
|
|
||||||
#[cfg(feature = "ristretto255")]
|
#[cfg(feature = "ristretto255")]
|
||||||
{
|
{
|
||||||
@@ -27,6 +30,12 @@ fn test_group_properties() -> Result<()> {
|
|||||||
test_identity_element_error::<NistP256>()?;
|
test_identity_element_error::<NistP256>()?;
|
||||||
test_zero_scalar_error::<NistP256>()?;
|
test_zero_scalar_error::<NistP256>()?;
|
||||||
|
|
||||||
|
test_identity_element_error::<NistP384>()?;
|
||||||
|
test_zero_scalar_error::<NistP384>()?;
|
||||||
|
|
||||||
|
test_identity_element_error::<NistP521>()?;
|
||||||
|
test_zero_scalar_error::<NistP521>()?;
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
+12
-25
@@ -1,16 +1,15 @@
|
|||||||
// Copyright (c) Facebook, Inc. and its affiliates.
|
// Copyright (c) Meta Platforms, Inc. and affiliates.
|
||||||
//
|
//
|
||||||
// This source code is licensed under both the MIT license found in the
|
// 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 and the Apache
|
// 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
|
// License, Version 2.0 found in the LICENSE-APACHE file in the root directory
|
||||||
// of this source tree.
|
// of this source tree. You may select, at your option, one of the above-listed
|
||||||
|
// licenses.
|
||||||
|
|
||||||
//! An implementation of a verifiable oblivious pseudorandom function (VOPRF)
|
//! An implementation of a verifiable oblivious pseudorandom function (VOPRF)
|
||||||
//!
|
//!
|
||||||
//! Note: This implementation is in sync with
|
//! Note: This implementation is in sync with
|
||||||
//! [draft-irtf-cfrg-voprf-11](https://www.ietf.org/archive/id/draft-irtf-cfrg-voprf-11.html),
|
//! [RFC 9497](https://www.rfc-editor.org/rfc/rfc9497).
|
||||||
//! but this specification is subject to change, until the final version
|
|
||||||
//! published by the IETF.
|
|
||||||
//!
|
//!
|
||||||
//! # Overview
|
//! # Overview
|
||||||
//!
|
//!
|
||||||
@@ -511,7 +510,7 @@
|
|||||||
//! and [PoprfClient] are used, and that each of the functions accept an
|
//! and [PoprfClient] are used, and that each of the functions accept an
|
||||||
//! additional (and optional) info parameter which represents the public input.
|
//! additional (and optional) info parameter which represents the public input.
|
||||||
//! See
|
//! See
|
||||||
//! <https://www.ietf.org/archive/id/draft-irtf-cfrg-voprf-11.html#name-poprf-public-input>
|
//! <https://www.rfc-editor.org/rfc/rfc9497#name-poprf-public-input>
|
||||||
//! for more detailed information on how this public input should be used.
|
//! for more detailed information on how this public input should be used.
|
||||||
//!
|
//!
|
||||||
//! # Features
|
//! # Features
|
||||||
@@ -532,24 +531,15 @@
|
|||||||
//! a [`CipherSuite`].
|
//! a [`CipherSuite`].
|
||||||
//!
|
//!
|
||||||
//! - The `ristretto255` feature enables using [`Ristretto255`] as the
|
//! - The `ristretto255` feature enables using [`Ristretto255`] as the
|
||||||
//! underlying group for the [Group] choice. A backend feature, which are
|
//! underlying group for the [Group] choice. To select a specific backend see
|
||||||
//! re-exported from [curve25519-dalek] and allow for selecting the
|
//! the [curve25519-dalek] documentation.
|
||||||
//! corresponding backend for the curve arithmetic used, has to be selected,
|
|
||||||
//! otherwise compilation will fail. The `ristretto255-u64` feature is
|
|
||||||
//! included as the default. Other features are mapped as `ristretto255-u32`,
|
|
||||||
//! `ristretto255-fiat-u64` and `ristretto255-fiat-u32`. Any `ristretto255-*`
|
|
||||||
//! backend feature will enable the `ristretto255` feature.
|
|
||||||
//!
|
|
||||||
//! - The `ristretto255-simd` feature is re-exported from [curve25519-dalek] and
|
|
||||||
//! enables parallel formulas, using either AVX2 or AVX512-IFMA. This will
|
|
||||||
//! automatically enable the `ristretto255-u64` feature and requires Rust
|
|
||||||
//! nightly.
|
|
||||||
//!
|
//!
|
||||||
//! [curve25519-dalek]:
|
//! [curve25519-dalek]:
|
||||||
//! (https://doc.dalek.rs/curve25519_dalek/index.html#backends-and-features)
|
//! (https://docs.rs/curve25519-dalek/4.0.0-pre.5/curve25519_dalek/index.html#backends)
|
||||||
|
|
||||||
#![cfg_attr(not(test), deny(unsafe_code))]
|
|
||||||
#![no_std]
|
#![no_std]
|
||||||
|
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
|
||||||
|
#![cfg_attr(not(test), deny(unsafe_code))]
|
||||||
#![warn(
|
#![warn(
|
||||||
clippy::cargo,
|
clippy::cargo,
|
||||||
clippy::missing_errors_doc,
|
clippy::missing_errors_doc,
|
||||||
@@ -564,9 +554,6 @@ extern crate alloc;
|
|||||||
#[cfg(feature = "std")]
|
#[cfg(feature = "std")]
|
||||||
extern crate std;
|
extern crate std;
|
||||||
|
|
||||||
#[cfg(feature = "serde")]
|
|
||||||
extern crate serde_ as serde;
|
|
||||||
|
|
||||||
mod ciphersuite;
|
mod ciphersuite;
|
||||||
mod common;
|
mod common;
|
||||||
mod error;
|
mod error;
|
||||||
|
|||||||
+44
-78
@@ -1,18 +1,18 @@
|
|||||||
// Copyright (c) Facebook, Inc. and its affiliates.
|
// Copyright (c) Meta Platforms, Inc. and affiliates.
|
||||||
//
|
//
|
||||||
// This source code is licensed under both the MIT license found in the
|
// 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 and the Apache
|
// 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
|
// License, Version 2.0 found in the LICENSE-APACHE file in the root directory
|
||||||
// of this source tree.
|
// of this source tree. You may select, at your option, one of the above-listed
|
||||||
|
// licenses.
|
||||||
|
|
||||||
//! Contains the main OPRF API
|
//! Contains the main OPRF API
|
||||||
|
|
||||||
use core::iter::{self, Map};
|
use core::iter::{self, Map};
|
||||||
|
|
||||||
use derive_where::derive_where;
|
use derive_where::derive_where;
|
||||||
use digest::core_api::BlockSizeUser;
|
use digest::{Digest, Output};
|
||||||
use digest::{Digest, Output, OutputSizeUser};
|
use generic_array::typenum::Unsigned;
|
||||||
use generic_array::typenum::{IsLess, IsLessOrEqual, Unsigned, U256};
|
|
||||||
use generic_array::GenericArray;
|
use generic_array::GenericArray;
|
||||||
use rand_core::{CryptoRng, RngCore};
|
use rand_core::{CryptoRng, RngCore};
|
||||||
|
|
||||||
@@ -41,13 +41,9 @@ use crate::{CipherSuite, Error, Group, Result};
|
|||||||
#[cfg_attr(
|
#[cfg_attr(
|
||||||
feature = "serde",
|
feature = "serde",
|
||||||
derive(serde::Deserialize, serde::Serialize),
|
derive(serde::Deserialize, serde::Serialize),
|
||||||
serde(crate = "serde", bound = "")
|
serde(bound = "")
|
||||||
)]
|
)]
|
||||||
pub struct OprfClient<CS: CipherSuite>
|
pub struct OprfClient<CS: CipherSuite> {
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
{
|
|
||||||
#[cfg_attr(feature = "serde", serde(with = "Scalar::<CS::Group>"))]
|
#[cfg_attr(feature = "serde", serde(with = "Scalar::<CS::Group>"))]
|
||||||
pub(crate) blind: <CS::Group as Group>::Scalar,
|
pub(crate) blind: <CS::Group as Group>::Scalar,
|
||||||
}
|
}
|
||||||
@@ -59,13 +55,9 @@ where
|
|||||||
#[cfg_attr(
|
#[cfg_attr(
|
||||||
feature = "serde",
|
feature = "serde",
|
||||||
derive(serde::Deserialize, serde::Serialize),
|
derive(serde::Deserialize, serde::Serialize),
|
||||||
serde(crate = "serde", bound = "")
|
serde(bound = "")
|
||||||
)]
|
)]
|
||||||
pub struct OprfServer<CS: CipherSuite>
|
pub struct OprfServer<CS: CipherSuite> {
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
{
|
|
||||||
#[cfg_attr(feature = "serde", serde(with = "Scalar::<CS::Group>"))]
|
#[cfg_attr(feature = "serde", serde(with = "Scalar::<CS::Group>"))]
|
||||||
pub(crate) sk: <CS::Group as Group>::Scalar,
|
pub(crate) sk: <CS::Group as Group>::Scalar,
|
||||||
}
|
}
|
||||||
@@ -75,11 +67,7 @@ where
|
|||||||
// =================== //
|
// =================== //
|
||||||
/////////////////////////
|
/////////////////////////
|
||||||
|
|
||||||
impl<CS: CipherSuite> OprfClient<CS>
|
impl<CS: CipherSuite> OprfClient<CS> {
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
{
|
|
||||||
/// Computes the first step for the multiplicative blinding version of
|
/// Computes the first step for the multiplicative blinding version of
|
||||||
/// DH-OPRF.
|
/// DH-OPRF.
|
||||||
///
|
///
|
||||||
@@ -153,11 +141,7 @@ where
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<CS: CipherSuite> OprfServer<CS>
|
impl<CS: CipherSuite> OprfServer<CS> {
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
{
|
|
||||||
/// Produces a new instance of a [OprfServer] using a supplied RNG
|
/// Produces a new instance of a [OprfServer] using a supplied RNG
|
||||||
///
|
///
|
||||||
/// # Errors
|
/// # Errors
|
||||||
@@ -193,7 +177,7 @@ where
|
|||||||
Ok(Self { sk })
|
Ok(Self { sk })
|
||||||
}
|
}
|
||||||
|
|
||||||
// Only used for tests
|
/// Only used for tests
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
pub fn get_private_key(&self) -> <CS::Group as Group>::Scalar {
|
pub fn get_private_key(&self) -> <CS::Group as Group>::Scalar {
|
||||||
self.sk
|
self.sk
|
||||||
@@ -230,11 +214,7 @@ where
|
|||||||
|
|
||||||
/// Contains the fields that are returned by a non-verifiable client blind
|
/// Contains the fields that are returned by a non-verifiable client blind
|
||||||
#[derive_where(Debug; <CS::Group as Group>::Scalar, <CS::Group as Group>::Elem)]
|
#[derive_where(Debug; <CS::Group as Group>::Scalar, <CS::Group as Group>::Elem)]
|
||||||
pub struct OprfClientBlindResult<CS: CipherSuite>
|
pub struct OprfClientBlindResult<CS: CipherSuite> {
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
{
|
|
||||||
/// The state to be persisted on the client
|
/// The state to be persisted on the client
|
||||||
pub state: OprfClient<CS>,
|
pub state: OprfClient<CS>,
|
||||||
/// The message to send to the server
|
/// The message to send to the server
|
||||||
@@ -260,11 +240,7 @@ fn finalize_after_unblind<
|
|||||||
>(
|
>(
|
||||||
inputs_and_unblinded_elements: IE,
|
inputs_and_unblinded_elements: IE,
|
||||||
_unused: &'a [u8],
|
_unused: &'a [u8],
|
||||||
) -> FinalizeAfterUnblindResult<CS, I, IE>
|
) -> FinalizeAfterUnblindResult<'a, CS, I, IE> {
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
{
|
|
||||||
inputs_and_unblinded_elements.map(|(input, unblinded_element)| {
|
inputs_and_unblinded_elements.map(|(input, unblinded_element)| {
|
||||||
let elem_len = <CS::Group as Group>::ElemLen::U16.to_be_bytes();
|
let elem_len = <CS::Group as Group>::ElemLen::U16.to_be_bytes();
|
||||||
|
|
||||||
@@ -277,7 +253,7 @@ where
|
|||||||
.chain_update(input.as_ref())
|
.chain_update(input.as_ref())
|
||||||
.chain_update(elem_len)
|
.chain_update(elem_len)
|
||||||
.chain_update(CS::Group::serialize_elem(unblinded_element))
|
.chain_update(CS::Group::serialize_elem(unblinded_element))
|
||||||
.chain_update(&STR_FINALIZE)
|
.chain_update(STR_FINALIZE)
|
||||||
.finalize())
|
.finalize())
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
@@ -291,11 +267,10 @@ where
|
|||||||
mod tests {
|
mod tests {
|
||||||
use core::ptr;
|
use core::ptr;
|
||||||
|
|
||||||
use generic_array::sequence::Concat;
|
|
||||||
use rand::rngs::OsRng;
|
use rand::rngs::OsRng;
|
||||||
|
|
||||||
use super::*;
|
use super::*;
|
||||||
use crate::common::{create_context_string, STR_HASH_TO_GROUP};
|
use crate::common::{Dst, STR_HASH_TO_GROUP};
|
||||||
use crate::Group;
|
use crate::Group;
|
||||||
|
|
||||||
fn prf<CS: CipherSuite>(
|
fn prf<CS: CipherSuite>(
|
||||||
@@ -303,13 +278,9 @@ mod tests {
|
|||||||
key: <CS::Group as Group>::Scalar,
|
key: <CS::Group as Group>::Scalar,
|
||||||
info: &[u8],
|
info: &[u8],
|
||||||
mode: Mode,
|
mode: Mode,
|
||||||
) -> Output<CS::Hash>
|
) -> Output<CS::Hash> {
|
||||||
where
|
let dst = Dst::new::<CS, _, _>(STR_HASH_TO_GROUP, mode);
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
let point = CS::Group::hash_to_curve::<CS::Hash>(&[input], &dst.as_dst()).unwrap();
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
{
|
|
||||||
let dst = GenericArray::from(STR_HASH_TO_GROUP).concat(create_context_string::<CS>(mode));
|
|
||||||
let point = CS::Group::hash_to_curve::<CS::Hash>(&[input], &dst).unwrap();
|
|
||||||
|
|
||||||
let res = point * &key;
|
let res = point * &key;
|
||||||
|
|
||||||
@@ -319,11 +290,7 @@ mod tests {
|
|||||||
.unwrap()
|
.unwrap()
|
||||||
}
|
}
|
||||||
|
|
||||||
fn base_retrieval<CS: CipherSuite>()
|
fn base_retrieval<CS: CipherSuite>() {
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
{
|
|
||||||
let input = b"input";
|
let input = b"input";
|
||||||
let mut rng = OsRng;
|
let mut rng = OsRng;
|
||||||
let client_blind_result = OprfClient::<CS>::blind(input, &mut rng).unwrap();
|
let client_blind_result = OprfClient::<CS>::blind(input, &mut rng).unwrap();
|
||||||
@@ -334,11 +301,7 @@ mod tests {
|
|||||||
assert_eq!(client_finalize_result, res2);
|
assert_eq!(client_finalize_result, res2);
|
||||||
}
|
}
|
||||||
|
|
||||||
fn base_inversion_unsalted<CS: CipherSuite>()
|
fn base_inversion_unsalted<CS: CipherSuite>() {
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
{
|
|
||||||
let mut rng = OsRng;
|
let mut rng = OsRng;
|
||||||
let mut input = [0u8; 64];
|
let mut input = [0u8; 64];
|
||||||
rng.fill_bytes(&mut input);
|
rng.fill_bytes(&mut input);
|
||||||
@@ -348,9 +311,8 @@ mod tests {
|
|||||||
.finalize(&input, &EvaluationElement(client_blind_result.message.0))
|
.finalize(&input, &EvaluationElement(client_blind_result.message.0))
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
|
||||||
let dst =
|
let dst = Dst::new::<CS, _, _>(STR_HASH_TO_GROUP, Mode::Oprf);
|
||||||
GenericArray::from(STR_HASH_TO_GROUP).concat(create_context_string::<CS>(Mode::Oprf));
|
let point = CS::Group::hash_to_curve::<CS::Hash>(&[&input], &dst.as_dst()).unwrap();
|
||||||
let point = CS::Group::hash_to_curve::<CS::Hash>(&[&input], &dst).unwrap();
|
|
||||||
let res2 = finalize_after_unblind::<CS, _, _>(iter::once((input.as_ref(), point)), &[])
|
let res2 = finalize_after_unblind::<CS, _, _>(iter::once((input.as_ref(), point)), &[])
|
||||||
.next()
|
.next()
|
||||||
.unwrap()
|
.unwrap()
|
||||||
@@ -359,11 +321,7 @@ mod tests {
|
|||||||
assert_eq!(client_finalize_result, res2);
|
assert_eq!(client_finalize_result, res2);
|
||||||
}
|
}
|
||||||
|
|
||||||
fn server_evaluate<CS: CipherSuite>()
|
fn server_evaluate<CS: CipherSuite>() {
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
{
|
|
||||||
let input = b"input";
|
let input = b"input";
|
||||||
let mut rng = OsRng;
|
let mut rng = OsRng;
|
||||||
let client_blind_result = OprfClient::<CS>::blind(input, &mut rng).unwrap();
|
let client_blind_result = OprfClient::<CS>::blind(input, &mut rng).unwrap();
|
||||||
@@ -387,11 +345,7 @@ mod tests {
|
|||||||
assert!(client_finalize != server_evaluate);
|
assert!(client_finalize != server_evaluate);
|
||||||
}
|
}
|
||||||
|
|
||||||
fn zeroize_oprf_client<CS: CipherSuite>()
|
fn zeroize_oprf_client<CS: CipherSuite>() {
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
{
|
|
||||||
let input = b"input";
|
let input = b"input";
|
||||||
let mut rng = OsRng;
|
let mut rng = OsRng;
|
||||||
let client_blind_result = OprfClient::<CS>::blind(input, &mut rng).unwrap();
|
let client_blind_result = OprfClient::<CS>::blind(input, &mut rng).unwrap();
|
||||||
@@ -405,11 +359,7 @@ mod tests {
|
|||||||
assert!(message.serialize().iter().all(|&x| x == 0));
|
assert!(message.serialize().iter().all(|&x| x == 0));
|
||||||
}
|
}
|
||||||
|
|
||||||
fn zeroize_oprf_server<CS: CipherSuite>()
|
fn zeroize_oprf_server<CS: CipherSuite>() {
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
{
|
|
||||||
let input = b"input";
|
let input = b"input";
|
||||||
let mut rng = OsRng;
|
let mut rng = OsRng;
|
||||||
let client_blind_result = OprfClient::<CS>::blind(input, &mut rng).unwrap();
|
let client_blind_result = OprfClient::<CS>::blind(input, &mut rng).unwrap();
|
||||||
@@ -427,6 +377,8 @@ mod tests {
|
|||||||
#[test]
|
#[test]
|
||||||
fn test_functionality() -> Result<()> {
|
fn test_functionality() -> Result<()> {
|
||||||
use p256::NistP256;
|
use p256::NistP256;
|
||||||
|
use p384::NistP384;
|
||||||
|
use p521::NistP521;
|
||||||
|
|
||||||
#[cfg(feature = "ristretto255")]
|
#[cfg(feature = "ristretto255")]
|
||||||
{
|
{
|
||||||
@@ -447,6 +399,20 @@ mod tests {
|
|||||||
zeroize_oprf_client::<NistP256>();
|
zeroize_oprf_client::<NistP256>();
|
||||||
zeroize_oprf_server::<NistP256>();
|
zeroize_oprf_server::<NistP256>();
|
||||||
|
|
||||||
|
base_retrieval::<NistP384>();
|
||||||
|
base_inversion_unsalted::<NistP384>();
|
||||||
|
server_evaluate::<NistP384>();
|
||||||
|
|
||||||
|
zeroize_oprf_client::<NistP384>();
|
||||||
|
zeroize_oprf_server::<NistP384>();
|
||||||
|
|
||||||
|
base_retrieval::<NistP521>();
|
||||||
|
base_inversion_unsalted::<NistP521>();
|
||||||
|
server_evaluate::<NistP521>();
|
||||||
|
|
||||||
|
zeroize_oprf_client::<NistP521>();
|
||||||
|
zeroize_oprf_server::<NistP521>();
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+65
-139
@@ -1,9 +1,10 @@
|
|||||||
// Copyright (c) Facebook, Inc. and its affiliates.
|
// Copyright (c) Meta Platforms, Inc. and affiliates.
|
||||||
//
|
//
|
||||||
// This source code is licensed under both the MIT license found in the
|
// 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 and the Apache
|
// 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
|
// License, Version 2.0 found in the LICENSE-APACHE file in the root directory
|
||||||
// of this source tree.
|
// of this source tree. You may select, at your option, one of the above-listed
|
||||||
|
// licenses.
|
||||||
|
|
||||||
//! Contains the main POPRF API
|
//! Contains the main POPRF API
|
||||||
|
|
||||||
@@ -12,18 +13,15 @@ use alloc::vec::Vec;
|
|||||||
use core::iter::{self, Map, Repeat, Zip};
|
use core::iter::{self, Map, Repeat, Zip};
|
||||||
|
|
||||||
use derive_where::derive_where;
|
use derive_where::derive_where;
|
||||||
use digest::core_api::BlockSizeUser;
|
|
||||||
use digest::{Digest, Output, OutputSizeUser};
|
use digest::{Digest, Output, OutputSizeUser};
|
||||||
use generic_array::sequence::Concat;
|
use generic_array::typenum::Unsigned;
|
||||||
use generic_array::typenum::{IsLess, IsLessOrEqual, Unsigned, U256};
|
use generic_array::{ArrayLength, GenericArray};
|
||||||
use generic_array::GenericArray;
|
|
||||||
use rand_core::{CryptoRng, RngCore};
|
use rand_core::{CryptoRng, RngCore};
|
||||||
|
|
||||||
use crate::common::{
|
use crate::common::{
|
||||||
create_context_string, derive_keypair, deterministic_blind_unchecked, generate_proof,
|
derive_keypair, deterministic_blind_unchecked, generate_proof, hash_to_group, i2osp_2,
|
||||||
hash_to_group, i2osp_2, server_evaluate_hash_input, verify_proof, BlindedElement,
|
server_evaluate_hash_input, verify_proof, BlindedElement, Dst, EvaluationElement, Mode,
|
||||||
EvaluationElement, Mode, PreparedEvaluationElement, Proof, STR_FINALIZE, STR_HASH_TO_SCALAR,
|
PreparedEvaluationElement, Proof, STR_FINALIZE, STR_HASH_TO_SCALAR, STR_INFO,
|
||||||
STR_INFO,
|
|
||||||
};
|
};
|
||||||
#[cfg(feature = "serde")]
|
#[cfg(feature = "serde")]
|
||||||
use crate::serialization::serde::{Element, Scalar};
|
use crate::serialization::serde::{Element, Scalar};
|
||||||
@@ -41,13 +39,9 @@ use crate::{CipherSuite, Error, Group, Result};
|
|||||||
#[cfg_attr(
|
#[cfg_attr(
|
||||||
feature = "serde",
|
feature = "serde",
|
||||||
derive(serde::Deserialize, serde::Serialize),
|
derive(serde::Deserialize, serde::Serialize),
|
||||||
serde(crate = "serde", bound = "")
|
serde(bound = "")
|
||||||
)]
|
)]
|
||||||
pub struct PoprfClient<CS: CipherSuite>
|
pub struct PoprfClient<CS: CipherSuite> {
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
{
|
|
||||||
#[cfg_attr(feature = "serde", serde(with = "Scalar::<CS::Group>"))]
|
#[cfg_attr(feature = "serde", serde(with = "Scalar::<CS::Group>"))]
|
||||||
pub(crate) blind: <CS::Group as Group>::Scalar,
|
pub(crate) blind: <CS::Group as Group>::Scalar,
|
||||||
#[cfg_attr(feature = "serde", serde(with = "Element::<CS::Group>"))]
|
#[cfg_attr(feature = "serde", serde(with = "Element::<CS::Group>"))]
|
||||||
@@ -61,13 +55,9 @@ where
|
|||||||
#[cfg_attr(
|
#[cfg_attr(
|
||||||
feature = "serde",
|
feature = "serde",
|
||||||
derive(serde::Deserialize, serde::Serialize),
|
derive(serde::Deserialize, serde::Serialize),
|
||||||
serde(crate = "serde", bound = "")
|
serde(bound = "")
|
||||||
)]
|
)]
|
||||||
pub struct PoprfServer<CS: CipherSuite>
|
pub struct PoprfServer<CS: CipherSuite> {
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
{
|
|
||||||
#[cfg_attr(feature = "serde", serde(with = "Scalar::<CS::Group>"))]
|
#[cfg_attr(feature = "serde", serde(with = "Scalar::<CS::Group>"))]
|
||||||
pub(crate) sk: <CS::Group as Group>::Scalar,
|
pub(crate) sk: <CS::Group as Group>::Scalar,
|
||||||
#[cfg_attr(feature = "serde", serde(with = "Element::<CS::Group>"))]
|
#[cfg_attr(feature = "serde", serde(with = "Element::<CS::Group>"))]
|
||||||
@@ -79,11 +69,7 @@ where
|
|||||||
// =================== //
|
// =================== //
|
||||||
/////////////////////////
|
/////////////////////////
|
||||||
|
|
||||||
impl<CS: CipherSuite> PoprfClient<CS>
|
impl<CS: CipherSuite> PoprfClient<CS> {
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
{
|
|
||||||
/// Computes the first step for the multiplicative blinding version of
|
/// Computes the first step for the multiplicative blinding version of
|
||||||
/// DH-OPRF.
|
/// DH-OPRF.
|
||||||
///
|
///
|
||||||
@@ -146,7 +132,10 @@ where
|
|||||||
proof: &Proof<CS>,
|
proof: &Proof<CS>,
|
||||||
pk: <CS::Group as Group>::Elem,
|
pk: <CS::Group as Group>::Elem,
|
||||||
info: Option<&[u8]>,
|
info: Option<&[u8]>,
|
||||||
) -> Result<Output<CS::Hash>> {
|
) -> Result<Output<CS::Hash>>
|
||||||
|
where
|
||||||
|
<<CS as CipherSuite>::Hash as OutputSizeUser>::OutputSize: ArrayLength,
|
||||||
|
{
|
||||||
let clients = core::array::from_ref(self);
|
let clients = core::array::from_ref(self);
|
||||||
let messages = core::array::from_ref(evaluation_element);
|
let messages = core::array::from_ref(evaluation_element);
|
||||||
|
|
||||||
@@ -181,6 +170,7 @@ where
|
|||||||
<&'a IC as IntoIterator>::IntoIter: ExactSizeIterator,
|
<&'a IC as IntoIterator>::IntoIter: ExactSizeIterator,
|
||||||
&'a IM: 'a + IntoIterator<Item = &'a EvaluationElement<CS>>,
|
&'a IM: 'a + IntoIterator<Item = &'a EvaluationElement<CS>>,
|
||||||
<&'a IM as IntoIterator>::IntoIter: ExactSizeIterator,
|
<&'a IM as IntoIterator>::IntoIter: ExactSizeIterator,
|
||||||
|
<<CS as CipherSuite>::Hash as OutputSizeUser>::OutputSize: ArrayLength,
|
||||||
{
|
{
|
||||||
let unblinded_elements = poprf_unblind(clients, messages, pk, proof, info)?;
|
let unblinded_elements = poprf_unblind(clients, messages, pk, proof, info)?;
|
||||||
|
|
||||||
@@ -194,11 +184,7 @@ where
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<CS: CipherSuite> PoprfServer<CS>
|
impl<CS: CipherSuite> PoprfServer<CS> {
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
{
|
|
||||||
/// Produces a new instance of a [PoprfServer] using a supplied RNG
|
/// Produces a new instance of a [PoprfServer] using a supplied RNG
|
||||||
///
|
///
|
||||||
/// # Errors
|
/// # Errors
|
||||||
@@ -236,7 +222,7 @@ where
|
|||||||
Ok(Self { sk, pk })
|
Ok(Self { sk, pk })
|
||||||
}
|
}
|
||||||
|
|
||||||
// Only used for tests
|
/// Only used for tests
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
pub fn get_private_key(&self) -> <CS::Group as Group>::Scalar {
|
pub fn get_private_key(&self) -> <CS::Group as Group>::Scalar {
|
||||||
self.sk
|
self.sk
|
||||||
@@ -428,11 +414,7 @@ where
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<CS: CipherSuite> BlindedElement<CS>
|
impl<CS: CipherSuite> BlindedElement<CS> {
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
{
|
|
||||||
/// Creates a [BlindedElement] from a raw group element.
|
/// Creates a [BlindedElement] from a raw group element.
|
||||||
///
|
///
|
||||||
/// # Caution
|
/// # Caution
|
||||||
@@ -451,11 +433,7 @@ where
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<CS: CipherSuite> EvaluationElement<CS>
|
impl<CS: CipherSuite> EvaluationElement<CS> {
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
{
|
|
||||||
/// Creates an [EvaluationElement] from a raw group element.
|
/// Creates an [EvaluationElement] from a raw group element.
|
||||||
///
|
///
|
||||||
/// # Caution
|
/// # Caution
|
||||||
@@ -481,11 +459,7 @@ where
|
|||||||
|
|
||||||
/// Contains the fields that are returned by a verifiable client blind
|
/// Contains the fields that are returned by a verifiable client blind
|
||||||
#[derive_where(Debug; <CS::Group as Group>::Scalar, <CS::Group as Group>::Elem)]
|
#[derive_where(Debug; <CS::Group as Group>::Scalar, <CS::Group as Group>::Elem)]
|
||||||
pub struct PoprfClientBlindResult<CS: CipherSuite>
|
pub struct PoprfClientBlindResult<CS: CipherSuite> {
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
{
|
|
||||||
/// The state to be persisted on the client
|
/// The state to be persisted on the client
|
||||||
pub state: PoprfClient<CS>,
|
pub state: PoprfClient<CS>,
|
||||||
/// The message to send to the server
|
/// The message to send to the server
|
||||||
@@ -498,11 +472,7 @@ pub type PoprfClientBatchFinalizeResult<'a, CS, II, IC, IM> =
|
|||||||
|
|
||||||
/// Contains the fields that are returned by a verifiable server evaluate
|
/// Contains the fields that are returned by a verifiable server evaluate
|
||||||
#[derive_where(Debug; <CS::Group as Group>::Scalar, <CS::Group as Group>::Elem)]
|
#[derive_where(Debug; <CS::Group as Group>::Scalar, <CS::Group as Group>::Elem)]
|
||||||
pub struct PoprfServerEvaluateResult<CS: CipherSuite>
|
pub struct PoprfServerEvaluateResult<CS: CipherSuite> {
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
{
|
|
||||||
/// The message to send to the client
|
/// The message to send to the client
|
||||||
pub message: EvaluationElement<CS>,
|
pub message: EvaluationElement<CS>,
|
||||||
/// The proof for the client to verify
|
/// The proof for the client to verify
|
||||||
@@ -512,11 +482,7 @@ where
|
|||||||
/// Contains the fields that are returned by a verifiable server batch evaluate
|
/// Contains the fields that are returned by a verifiable server batch evaluate
|
||||||
#[derive_where(Debug; <CS::Group as Group>::Scalar, <CS::Group as Group>::Elem)]
|
#[derive_where(Debug; <CS::Group as Group>::Scalar, <CS::Group as Group>::Elem)]
|
||||||
#[cfg(feature = "alloc")]
|
#[cfg(feature = "alloc")]
|
||||||
pub struct PoprfServerBatchEvaluateResult<CS: CipherSuite>
|
pub struct PoprfServerBatchEvaluateResult<CS: CipherSuite> {
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
{
|
|
||||||
/// The messages to send to the client
|
/// The messages to send to the client
|
||||||
pub messages: Vec<EvaluationElement<CS>>,
|
pub messages: Vec<EvaluationElement<CS>>,
|
||||||
/// The proof for the client to verify
|
/// The proof for the client to verify
|
||||||
@@ -541,24 +507,17 @@ pub type PoprfServerBatchEvaluatePreparedEvaluationElements<CS, I> = Map<
|
|||||||
#[cfg_attr(
|
#[cfg_attr(
|
||||||
feature = "serde",
|
feature = "serde",
|
||||||
derive(serde::Deserialize, serde::Serialize),
|
derive(serde::Deserialize, serde::Serialize),
|
||||||
serde(crate = "serde", bound = "")
|
serde(bound = "")
|
||||||
)]
|
)]
|
||||||
pub struct PoprfPreparedTweak<CS: CipherSuite>(
|
pub struct PoprfPreparedTweak<CS: CipherSuite>(
|
||||||
#[cfg_attr(feature = "serde", serde(with = "Scalar::<CS::Group>"))]
|
#[cfg_attr(feature = "serde", serde(with = "Scalar::<CS::Group>"))]
|
||||||
<CS::Group as Group>::Scalar,
|
<CS::Group as Group>::Scalar,
|
||||||
)
|
);
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>;
|
|
||||||
|
|
||||||
/// Contains the fields that are returned by a partially verifiable server batch
|
/// Contains the fields that are returned by a partially verifiable server batch
|
||||||
/// evaluate prepare
|
/// evaluate prepare
|
||||||
#[derive_where(Debug; I, <CS::Group as Group>::Scalar)]
|
#[derive_where(Debug; I, <CS::Group as Group>::Scalar)]
|
||||||
pub struct PoprfServerBatchEvaluatePrepareResult<CS: CipherSuite, I>
|
pub struct PoprfServerBatchEvaluatePrepareResult<CS: CipherSuite, I> {
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
{
|
|
||||||
/// Prepared [`EvaluationElement`].
|
/// Prepared [`EvaluationElement`].
|
||||||
pub prepared_evaluation_elements: PoprfServerBatchEvaluatePreparedEvaluationElements<CS, I>,
|
pub prepared_evaluation_elements: PoprfServerBatchEvaluatePreparedEvaluationElements<CS, I>,
|
||||||
/// Prepared tweak.
|
/// Prepared tweak.
|
||||||
@@ -577,8 +536,6 @@ pub type PoprfServerBatchEvaluateFinishedMessages<'a, CS, I> = Map<
|
|||||||
#[derive_where(Debug; <&'a I as IntoIterator>::IntoIter, <CS::Group as Group>::Scalar)]
|
#[derive_where(Debug; <&'a I as IntoIterator>::IntoIter, <CS::Group as Group>::Scalar)]
|
||||||
pub struct PoprfServerBatchEvaluateFinishResult<'a, CS: 'a + CipherSuite, I>
|
pub struct PoprfServerBatchEvaluateFinishResult<'a, CS: 'a + CipherSuite, I>
|
||||||
where
|
where
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
&'a I: IntoIterator<Item = &'a PreparedEvaluationElement<CS>>,
|
&'a I: IntoIterator<Item = &'a PreparedEvaluationElement<CS>>,
|
||||||
{
|
{
|
||||||
/// The [`EvaluationElement`]s to send to the client
|
/// The [`EvaluationElement`]s to send to the client
|
||||||
@@ -599,11 +556,7 @@ where
|
|||||||
fn compute_tweaked_key<CS: CipherSuite>(
|
fn compute_tweaked_key<CS: CipherSuite>(
|
||||||
pk: <CS::Group as Group>::Elem,
|
pk: <CS::Group as Group>::Elem,
|
||||||
info: Option<&[u8]>,
|
info: Option<&[u8]>,
|
||||||
) -> Result<<CS::Group as Group>::Elem>
|
) -> Result<<CS::Group as Group>::Elem> {
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
{
|
|
||||||
// None for info is treated the same as empty bytes
|
// None for info is treated the same as empty bytes
|
||||||
let info = info.unwrap_or_default();
|
let info = info.unwrap_or_default();
|
||||||
|
|
||||||
@@ -616,10 +569,9 @@ where
|
|||||||
let info_len = i2osp_2(info.len()).map_err(|_| Error::Info)?;
|
let info_len = i2osp_2(info.len()).map_err(|_| Error::Info)?;
|
||||||
let framed_info = [STR_INFO.as_slice(), &info_len, info];
|
let framed_info = [STR_INFO.as_slice(), &info_len, info];
|
||||||
|
|
||||||
let dst =
|
let dst = Dst::new::<CS, _, _>(STR_HASH_TO_SCALAR, Mode::Poprf);
|
||||||
GenericArray::from(STR_HASH_TO_SCALAR).concat(create_context_string::<CS>(Mode::Poprf));
|
|
||||||
// This can't fail, the size of the `input` is known.
|
// This can't fail, the size of the `input` is known.
|
||||||
let m = CS::Group::hash_to_scalar::<CS::Hash>(&framed_info, &dst).unwrap();
|
let m = CS::Group::hash_to_scalar::<CS::Hash>(&framed_info, &dst.as_dst()).unwrap();
|
||||||
|
|
||||||
let t = CS::Group::base_elem() * &m;
|
let t = CS::Group::base_elem() * &m;
|
||||||
let tweaked_key = t + &pk;
|
let tweaked_key = t + &pk;
|
||||||
@@ -638,11 +590,7 @@ where
|
|||||||
fn compute_tweak<CS: CipherSuite>(
|
fn compute_tweak<CS: CipherSuite>(
|
||||||
sk: <CS::Group as Group>::Scalar,
|
sk: <CS::Group as Group>::Scalar,
|
||||||
info: Option<&[u8]>,
|
info: Option<&[u8]>,
|
||||||
) -> Result<<CS::Group as Group>::Scalar>
|
) -> Result<<CS::Group as Group>::Scalar> {
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
{
|
|
||||||
// None for info is treated the same as empty bytes
|
// None for info is treated the same as empty bytes
|
||||||
let info = info.unwrap_or_default();
|
let info = info.unwrap_or_default();
|
||||||
|
|
||||||
@@ -654,10 +602,9 @@ where
|
|||||||
let info_len = i2osp_2(info.len()).map_err(|_| Error::Info)?;
|
let info_len = i2osp_2(info.len()).map_err(|_| Error::Info)?;
|
||||||
let framed_info = [STR_INFO.as_slice(), &info_len, info];
|
let framed_info = [STR_INFO.as_slice(), &info_len, info];
|
||||||
|
|
||||||
let dst =
|
let dst = Dst::new::<CS, _, _>(STR_HASH_TO_SCALAR, Mode::Poprf);
|
||||||
GenericArray::from(STR_HASH_TO_SCALAR).concat(create_context_string::<CS>(Mode::Poprf));
|
|
||||||
// This can't fail, the size of the `input` is known.
|
// This can't fail, the size of the `input` is known.
|
||||||
let m = CS::Group::hash_to_scalar::<CS::Hash>(&framed_info, &dst).unwrap();
|
let m = CS::Group::hash_to_scalar::<CS::Hash>(&framed_info, &dst.as_dst()).unwrap();
|
||||||
|
|
||||||
let t = sk + &m;
|
let t = sk + &m;
|
||||||
|
|
||||||
@@ -694,8 +641,6 @@ fn poprf_unblind<'a, CS: 'a + CipherSuite, IC, IM>(
|
|||||||
info: Option<&[u8]>,
|
info: Option<&[u8]>,
|
||||||
) -> Result<PoprfUnblindResult<'a, CS, IC, IM>>
|
) -> Result<PoprfUnblindResult<'a, CS, IC, IM>>
|
||||||
where
|
where
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
&'a IC: 'a + IntoIterator<Item = &'a PoprfClient<CS>>,
|
&'a IC: 'a + IntoIterator<Item = &'a PoprfClient<CS>>,
|
||||||
<&'a IC as IntoIterator>::IntoIter: ExactSizeIterator,
|
<&'a IC as IntoIterator>::IntoIter: ExactSizeIterator,
|
||||||
&'a IM: 'a + IntoIterator<Item = &'a EvaluationElement<CS>>,
|
&'a IM: 'a + IntoIterator<Item = &'a EvaluationElement<CS>>,
|
||||||
@@ -723,7 +668,7 @@ where
|
|||||||
)?;
|
)?;
|
||||||
|
|
||||||
Ok(blinds
|
Ok(blinds
|
||||||
.zip(messages.into_iter())
|
.zip(messages)
|
||||||
.map(|(blind, x)| x.0 * &CS::Group::invert_scalar(blind)))
|
.map(|(blind, x)| x.0 * &CS::Group::invert_scalar(blind)))
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -731,7 +676,7 @@ type FinalizeAfterUnblindResult<'a, CS, IE, II> = Map<
|
|||||||
Zip<Zip<IE, II>, Repeat<&'a [u8]>>,
|
Zip<Zip<IE, II>, Repeat<&'a [u8]>>,
|
||||||
fn(
|
fn(
|
||||||
((<<CS as CipherSuite>::Group as Group>::Elem, &[u8]), &[u8]),
|
((<<CS as CipherSuite>::Group as Group>::Elem, &[u8]), &[u8]),
|
||||||
) -> Result<GenericArray<u8, <<CS as CipherSuite>::Hash as OutputSizeUser>::OutputSize>>,
|
) -> Result<Output<<CS as CipherSuite>::Hash>>,
|
||||||
>;
|
>;
|
||||||
|
|
||||||
/// Can only fail with [`Error::Batch`] and returned values can only fail with
|
/// Can only fail with [`Error::Batch`] and returned values can only fail with
|
||||||
@@ -747,8 +692,7 @@ fn finalize_after_unblind<
|
|||||||
info: Option<&'a [u8]>,
|
info: Option<&'a [u8]>,
|
||||||
) -> Result<FinalizeAfterUnblindResult<'a, CS, IE, II>>
|
) -> Result<FinalizeAfterUnblindResult<'a, CS, IE, II>>
|
||||||
where
|
where
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
<<CS as CipherSuite>::Hash as OutputSizeUser>::OutputSize: ArrayLength,
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
{
|
{
|
||||||
if unblinded_elements.len() != inputs.len() {
|
if unblinded_elements.len() != inputs.len() {
|
||||||
return Err(Error::Batch);
|
return Err(Error::Batch);
|
||||||
@@ -787,11 +731,8 @@ where
|
|||||||
|
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
mod tests {
|
mod tests {
|
||||||
use core::ops::Add;
|
|
||||||
use core::ptr;
|
use core::ptr;
|
||||||
|
|
||||||
use generic_array::typenum::Sum;
|
|
||||||
use generic_array::ArrayLength;
|
|
||||||
use rand::rngs::OsRng;
|
use rand::rngs::OsRng;
|
||||||
|
|
||||||
use super::*;
|
use super::*;
|
||||||
@@ -803,15 +744,11 @@ mod tests {
|
|||||||
key: <CS::Group as Group>::Scalar,
|
key: <CS::Group as Group>::Scalar,
|
||||||
info: &[u8],
|
info: &[u8],
|
||||||
mode: Mode,
|
mode: Mode,
|
||||||
) -> Output<CS::Hash>
|
) -> Output<CS::Hash> {
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
{
|
|
||||||
let t = compute_tweak::<CS>(key, Some(info)).unwrap();
|
let t = compute_tweak::<CS>(key, Some(info)).unwrap();
|
||||||
|
|
||||||
let dst = GenericArray::from(STR_HASH_TO_GROUP).concat(create_context_string::<CS>(mode));
|
let dst = Dst::new::<CS, _, _>(STR_HASH_TO_GROUP, mode);
|
||||||
let point = CS::Group::hash_to_curve::<CS::Hash>(&[input], &dst).unwrap();
|
let point = CS::Group::hash_to_curve::<CS::Hash>(&[input], &dst.as_dst()).unwrap();
|
||||||
|
|
||||||
// evaluatedElement = G.ScalarInverse(t) * blindedElement
|
// evaluatedElement = G.ScalarInverse(t) * blindedElement
|
||||||
let res = point * &CS::Group::invert_scalar(t);
|
let res = point * &CS::Group::invert_scalar(t);
|
||||||
@@ -823,11 +760,7 @@ mod tests {
|
|||||||
.unwrap()
|
.unwrap()
|
||||||
}
|
}
|
||||||
|
|
||||||
fn verifiable_retrieval<CS: CipherSuite>()
|
fn verifiable_retrieval<CS: CipherSuite>() {
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
{
|
|
||||||
let input = b"input";
|
let input = b"input";
|
||||||
let info = b"info";
|
let info = b"info";
|
||||||
let mut rng = OsRng;
|
let mut rng = OsRng;
|
||||||
@@ -850,11 +783,7 @@ mod tests {
|
|||||||
assert_eq!(client_finalize_result, res2);
|
assert_eq!(client_finalize_result, res2);
|
||||||
}
|
}
|
||||||
|
|
||||||
fn verifiable_bad_public_key<CS: CipherSuite>()
|
fn verifiable_bad_public_key<CS: CipherSuite>() {
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
{
|
|
||||||
let input = b"input";
|
let input = b"input";
|
||||||
let info = b"info";
|
let info = b"info";
|
||||||
let mut rng = OsRng;
|
let mut rng = OsRng;
|
||||||
@@ -864,10 +793,9 @@ mod tests {
|
|||||||
.blind_evaluate(&mut rng, &client_blind_result.message, Some(info))
|
.blind_evaluate(&mut rng, &client_blind_result.message, Some(info))
|
||||||
.unwrap();
|
.unwrap();
|
||||||
let wrong_pk = {
|
let wrong_pk = {
|
||||||
let dst = GenericArray::from(STR_HASH_TO_GROUP)
|
let dst = Dst::new::<CS, _, _>(STR_HASH_TO_GROUP, Mode::Oprf);
|
||||||
.concat(create_context_string::<CS>(Mode::Oprf));
|
|
||||||
// Choose a group element that is unlikely to be the right public key
|
// Choose a group element that is unlikely to be the right public key
|
||||||
CS::Group::hash_to_curve::<CS::Hash>(&[b"msg"], &dst).unwrap()
|
CS::Group::hash_to_curve::<CS::Hash>(&[b"msg"], &dst.as_dst()).unwrap()
|
||||||
};
|
};
|
||||||
let client_finalize_result = client_blind_result.state.finalize(
|
let client_finalize_result = client_blind_result.state.finalize(
|
||||||
input,
|
input,
|
||||||
@@ -879,11 +807,7 @@ mod tests {
|
|||||||
assert!(client_finalize_result.is_err());
|
assert!(client_finalize_result.is_err());
|
||||||
}
|
}
|
||||||
|
|
||||||
fn verifiable_server_evaluate<CS: CipherSuite>()
|
fn verifiable_server_evaluate<CS: CipherSuite>() {
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
{
|
|
||||||
let input = b"input";
|
let input = b"input";
|
||||||
let info = Some(b"info".as_slice());
|
let info = Some(b"info".as_slice());
|
||||||
let mut rng = OsRng;
|
let mut rng = OsRng;
|
||||||
@@ -916,13 +840,7 @@ mod tests {
|
|||||||
assert!(client_finalize != server_evaluate);
|
assert!(client_finalize != server_evaluate);
|
||||||
}
|
}
|
||||||
|
|
||||||
fn zeroize_verifiable_client<CS: CipherSuite>()
|
fn zeroize_verifiable_client<CS: CipherSuite>() {
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
<CS::Group as Group>::ScalarLen: Add<<CS::Group as Group>::ElemLen>,
|
|
||||||
Sum<<CS::Group as Group>::ScalarLen, <CS::Group as Group>::ElemLen>: ArrayLength<u8>,
|
|
||||||
{
|
|
||||||
let input = b"input";
|
let input = b"input";
|
||||||
let mut rng = OsRng;
|
let mut rng = OsRng;
|
||||||
let client_blind_result = PoprfClient::<CS>::blind(input, &mut rng).unwrap();
|
let client_blind_result = PoprfClient::<CS>::blind(input, &mut rng).unwrap();
|
||||||
@@ -936,15 +854,7 @@ mod tests {
|
|||||||
assert!(message.serialize().iter().all(|&x| x == 0));
|
assert!(message.serialize().iter().all(|&x| x == 0));
|
||||||
}
|
}
|
||||||
|
|
||||||
fn zeroize_verifiable_server<CS: CipherSuite>()
|
fn zeroize_verifiable_server<CS: CipherSuite>() {
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
<CS::Group as Group>::ScalarLen: Add<<CS::Group as Group>::ElemLen>,
|
|
||||||
Sum<<CS::Group as Group>::ScalarLen, <CS::Group as Group>::ElemLen>: ArrayLength<u8>,
|
|
||||||
<CS::Group as Group>::ScalarLen: Add<<CS::Group as Group>::ScalarLen>,
|
|
||||||
Sum<<CS::Group as Group>::ScalarLen, <CS::Group as Group>::ScalarLen>: ArrayLength<u8>,
|
|
||||||
{
|
|
||||||
let input = b"input";
|
let input = b"input";
|
||||||
let info = b"info";
|
let info = b"info";
|
||||||
let mut rng = OsRng;
|
let mut rng = OsRng;
|
||||||
@@ -970,6 +880,8 @@ mod tests {
|
|||||||
#[test]
|
#[test]
|
||||||
fn test_functionality() -> Result<()> {
|
fn test_functionality() -> Result<()> {
|
||||||
use p256::NistP256;
|
use p256::NistP256;
|
||||||
|
use p384::NistP384;
|
||||||
|
use p521::NistP521;
|
||||||
|
|
||||||
#[cfg(feature = "ristretto255")]
|
#[cfg(feature = "ristretto255")]
|
||||||
{
|
{
|
||||||
@@ -990,6 +902,20 @@ mod tests {
|
|||||||
zeroize_verifiable_client::<NistP256>();
|
zeroize_verifiable_client::<NistP256>();
|
||||||
zeroize_verifiable_server::<NistP256>();
|
zeroize_verifiable_server::<NistP256>();
|
||||||
|
|
||||||
|
verifiable_retrieval::<NistP384>();
|
||||||
|
verifiable_bad_public_key::<NistP384>();
|
||||||
|
verifiable_server_evaluate::<NistP384>();
|
||||||
|
|
||||||
|
zeroize_verifiable_client::<NistP384>();
|
||||||
|
zeroize_verifiable_server::<NistP384>();
|
||||||
|
|
||||||
|
verifiable_retrieval::<NistP521>();
|
||||||
|
verifiable_bad_public_key::<NistP521>();
|
||||||
|
verifiable_server_evaluate::<NistP521>();
|
||||||
|
|
||||||
|
zeroize_verifiable_client::<NistP521>();
|
||||||
|
zeroize_verifiable_server::<NistP521>();
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+25
-82
@@ -1,20 +1,17 @@
|
|||||||
// Copyright (c) Facebook, Inc. and its affiliates.
|
// Copyright (c) Meta Platforms, Inc. and affiliates.
|
||||||
//
|
//
|
||||||
// This source code is licensed under both the MIT license found in the
|
// 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 and the Apache
|
// 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
|
// License, Version 2.0 found in the LICENSE-APACHE file in the root directory
|
||||||
// of this source tree.
|
// of this source tree. You may select, at your option, one of the above-listed
|
||||||
|
// licenses.
|
||||||
|
|
||||||
//! Handles the serialization of each of the components used in the VOPRF
|
//! Handles the serialization of each of the components used in the VOPRF
|
||||||
//! protocol
|
//! protocol
|
||||||
|
|
||||||
use core::ops::Add;
|
|
||||||
|
|
||||||
use digest::core_api::BlockSizeUser;
|
|
||||||
use digest::OutputSizeUser;
|
|
||||||
use generic_array::sequence::Concat;
|
use generic_array::sequence::Concat;
|
||||||
use generic_array::typenum::{IsLess, IsLessOrEqual, Sum, Unsigned, U256};
|
use generic_array::typenum::{Sum, Unsigned};
|
||||||
use generic_array::{ArrayLength, GenericArray};
|
use generic_array::GenericArray;
|
||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
BlindedElement, CipherSuite, Error, EvaluationElement, Group, OprfClient, OprfServer,
|
BlindedElement, CipherSuite, Error, EvaluationElement, Group, OprfClient, OprfServer,
|
||||||
@@ -29,11 +26,7 @@ use crate::{
|
|||||||
/// Length of [`OprfClient`] in bytes for serialization.
|
/// Length of [`OprfClient`] in bytes for serialization.
|
||||||
pub type OprfClientLen<CS> = <<CS as CipherSuite>::Group as Group>::ScalarLen;
|
pub type OprfClientLen<CS> = <<CS as CipherSuite>::Group as Group>::ScalarLen;
|
||||||
|
|
||||||
impl<CS: CipherSuite> OprfClient<CS>
|
impl<CS: CipherSuite> OprfClient<CS> {
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
{
|
|
||||||
/// Serialization into bytes
|
/// Serialization into bytes
|
||||||
pub fn serialize(&self) -> GenericArray<u8, OprfClientLen<CS>> {
|
pub fn serialize(&self) -> GenericArray<u8, OprfClientLen<CS>> {
|
||||||
CS::Group::serialize_scalar(self.blind)
|
CS::Group::serialize_scalar(self.blind)
|
||||||
@@ -56,17 +49,9 @@ pub type VoprfClientLen<CS> = Sum<
|
|||||||
<<CS as CipherSuite>::Group as Group>::ElemLen,
|
<<CS as CipherSuite>::Group as Group>::ElemLen,
|
||||||
>;
|
>;
|
||||||
|
|
||||||
impl<CS: CipherSuite> VoprfClient<CS>
|
impl<CS: CipherSuite> VoprfClient<CS> {
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
{
|
|
||||||
/// Serialization into bytes
|
/// Serialization into bytes
|
||||||
pub fn serialize(&self) -> GenericArray<u8, VoprfClientLen<CS>>
|
pub fn serialize(&self) -> GenericArray<u8, VoprfClientLen<CS>> {
|
||||||
where
|
|
||||||
<CS::Group as Group>::ScalarLen: Add<<CS::Group as Group>::ElemLen>,
|
|
||||||
VoprfClientLen<CS>: ArrayLength<u8>,
|
|
||||||
{
|
|
||||||
<CS::Group as Group>::serialize_scalar(self.blind)
|
<CS::Group as Group>::serialize_scalar(self.blind)
|
||||||
.concat(<CS::Group as Group>::serialize_elem(self.blinded_element))
|
.concat(<CS::Group as Group>::serialize_elem(self.blinded_element))
|
||||||
}
|
}
|
||||||
@@ -92,17 +77,9 @@ pub type PoprfClientLen<CS> = Sum<
|
|||||||
<<CS as CipherSuite>::Group as Group>::ElemLen,
|
<<CS as CipherSuite>::Group as Group>::ElemLen,
|
||||||
>;
|
>;
|
||||||
|
|
||||||
impl<CS: CipherSuite> PoprfClient<CS>
|
impl<CS: CipherSuite> PoprfClient<CS> {
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
{
|
|
||||||
/// Serialization into bytes
|
/// Serialization into bytes
|
||||||
pub fn serialize(&self) -> GenericArray<u8, PoprfClientLen<CS>>
|
pub fn serialize(&self) -> GenericArray<u8, PoprfClientLen<CS>> {
|
||||||
where
|
|
||||||
<CS::Group as Group>::ScalarLen: Add<<CS::Group as Group>::ElemLen>,
|
|
||||||
PoprfClientLen<CS>: ArrayLength<u8>,
|
|
||||||
{
|
|
||||||
<CS::Group as Group>::serialize_scalar(self.blind)
|
<CS::Group as Group>::serialize_scalar(self.blind)
|
||||||
.concat(<CS::Group as Group>::serialize_elem(self.blinded_element))
|
.concat(<CS::Group as Group>::serialize_elem(self.blinded_element))
|
||||||
}
|
}
|
||||||
@@ -125,11 +102,7 @@ where
|
|||||||
/// Length of [`OprfServer`] in bytes for serialization.
|
/// Length of [`OprfServer`] in bytes for serialization.
|
||||||
pub type OprfServerLen<CS> = <<CS as CipherSuite>::Group as Group>::ScalarLen;
|
pub type OprfServerLen<CS> = <<CS as CipherSuite>::Group as Group>::ScalarLen;
|
||||||
|
|
||||||
impl<CS: CipherSuite> OprfServer<CS>
|
impl<CS: CipherSuite> OprfServer<CS> {
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
{
|
|
||||||
/// Serialization into bytes
|
/// Serialization into bytes
|
||||||
pub fn serialize(&self) -> GenericArray<u8, OprfServerLen<CS>> {
|
pub fn serialize(&self) -> GenericArray<u8, OprfServerLen<CS>> {
|
||||||
CS::Group::serialize_scalar(self.sk)
|
CS::Group::serialize_scalar(self.sk)
|
||||||
@@ -152,17 +125,9 @@ pub type VoprfServerLen<CS> = Sum<
|
|||||||
<<CS as CipherSuite>::Group as Group>::ElemLen,
|
<<CS as CipherSuite>::Group as Group>::ElemLen,
|
||||||
>;
|
>;
|
||||||
|
|
||||||
impl<CS: CipherSuite> VoprfServer<CS>
|
impl<CS: CipherSuite> VoprfServer<CS> {
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
{
|
|
||||||
/// Serialization into bytes
|
/// Serialization into bytes
|
||||||
pub fn serialize(&self) -> GenericArray<u8, VoprfServerLen<CS>>
|
pub fn serialize(&self) -> GenericArray<u8, VoprfServerLen<CS>> {
|
||||||
where
|
|
||||||
<CS::Group as Group>::ScalarLen: Add<<CS::Group as Group>::ElemLen>,
|
|
||||||
VoprfServerLen<CS>: ArrayLength<u8>,
|
|
||||||
{
|
|
||||||
CS::Group::serialize_scalar(self.sk).concat(CS::Group::serialize_elem(self.pk))
|
CS::Group::serialize_scalar(self.sk).concat(CS::Group::serialize_elem(self.pk))
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -184,17 +149,9 @@ pub type PoprfServerLen<CS> = Sum<
|
|||||||
<<CS as CipherSuite>::Group as Group>::ElemLen,
|
<<CS as CipherSuite>::Group as Group>::ElemLen,
|
||||||
>;
|
>;
|
||||||
|
|
||||||
impl<CS: CipherSuite> PoprfServer<CS>
|
impl<CS: CipherSuite> PoprfServer<CS> {
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
{
|
|
||||||
/// Serialization into bytes
|
/// Serialization into bytes
|
||||||
pub fn serialize(&self) -> GenericArray<u8, PoprfServerLen<CS>>
|
pub fn serialize(&self) -> GenericArray<u8, PoprfServerLen<CS>> {
|
||||||
where
|
|
||||||
<CS::Group as Group>::ScalarLen: Add<<CS::Group as Group>::ElemLen>,
|
|
||||||
PoprfServerLen<CS>: ArrayLength<u8>,
|
|
||||||
{
|
|
||||||
CS::Group::serialize_scalar(self.sk).concat(CS::Group::serialize_elem(self.pk))
|
CS::Group::serialize_scalar(self.sk).concat(CS::Group::serialize_elem(self.pk))
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -216,17 +173,9 @@ pub type ProofLen<CS> = Sum<
|
|||||||
<<CS as CipherSuite>::Group as Group>::ScalarLen,
|
<<CS as CipherSuite>::Group as Group>::ScalarLen,
|
||||||
>;
|
>;
|
||||||
|
|
||||||
impl<CS: CipherSuite> Proof<CS>
|
impl<CS: CipherSuite> Proof<CS> {
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
{
|
|
||||||
/// Serialization into bytes
|
/// Serialization into bytes
|
||||||
pub fn serialize(&self) -> GenericArray<u8, ProofLen<CS>>
|
pub fn serialize(&self) -> GenericArray<u8, ProofLen<CS>> {
|
||||||
where
|
|
||||||
<CS::Group as Group>::ScalarLen: Add<<CS::Group as Group>::ScalarLen>,
|
|
||||||
ProofLen<CS>: ArrayLength<u8>,
|
|
||||||
{
|
|
||||||
CS::Group::serialize_scalar(self.c_scalar)
|
CS::Group::serialize_scalar(self.c_scalar)
|
||||||
.concat(CS::Group::serialize_scalar(self.s_scalar))
|
.concat(CS::Group::serialize_scalar(self.s_scalar))
|
||||||
}
|
}
|
||||||
@@ -246,11 +195,7 @@ where
|
|||||||
/// Length of [`BlindedElement`] in bytes for serialization.
|
/// Length of [`BlindedElement`] in bytes for serialization.
|
||||||
pub type BlindedElementLen<CS> = <<CS as CipherSuite>::Group as Group>::ElemLen;
|
pub type BlindedElementLen<CS> = <<CS as CipherSuite>::Group as Group>::ElemLen;
|
||||||
|
|
||||||
impl<CS: CipherSuite> BlindedElement<CS>
|
impl<CS: CipherSuite> BlindedElement<CS> {
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
{
|
|
||||||
/// Serialization into bytes
|
/// Serialization into bytes
|
||||||
pub fn serialize(&self) -> GenericArray<u8, BlindedElementLen<CS>> {
|
pub fn serialize(&self) -> GenericArray<u8, BlindedElementLen<CS>> {
|
||||||
CS::Group::serialize_elem(self.0)
|
CS::Group::serialize_elem(self.0)
|
||||||
@@ -270,11 +215,7 @@ where
|
|||||||
/// Length of [`EvaluationElement`] in bytes for serialization.
|
/// Length of [`EvaluationElement`] in bytes for serialization.
|
||||||
pub type EvaluationElementLen<CS> = <<CS as CipherSuite>::Group as Group>::ElemLen;
|
pub type EvaluationElementLen<CS> = <<CS as CipherSuite>::Group as Group>::ElemLen;
|
||||||
|
|
||||||
impl<CS: CipherSuite> EvaluationElement<CS>
|
impl<CS: CipherSuite> EvaluationElement<CS> {
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
{
|
|
||||||
/// Serialization into bytes
|
/// Serialization into bytes
|
||||||
pub fn serialize(&self) -> GenericArray<u8, EvaluationElementLen<CS>> {
|
pub fn serialize(&self) -> GenericArray<u8, EvaluationElementLen<CS>> {
|
||||||
CS::Group::serialize_elem(self.0)
|
CS::Group::serialize_elem(self.0)
|
||||||
@@ -306,11 +247,11 @@ fn deserialize_scalar<G: Group>(input: &mut &[u8]) -> Result<G::Scalar> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
trait SliceExt {
|
trait SliceExt {
|
||||||
fn take_ext(self: &mut &Self, take: usize) -> Option<&Self>;
|
fn take_ext<'a>(self: &mut &'a Self, take: usize) -> Option<&'a Self>;
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<T> SliceExt for [T] {
|
impl<T> SliceExt for [T] {
|
||||||
fn take_ext(self: &mut &Self, take: usize) -> Option<&Self> {
|
fn take_ext<'a>(self: &mut &'a Self, take: usize) -> Option<&'a Self> {
|
||||||
if take > self.len() {
|
if take > self.len() {
|
||||||
return None;
|
return None;
|
||||||
}
|
}
|
||||||
@@ -389,6 +330,8 @@ mod test {
|
|||||||
}
|
}
|
||||||
|
|
||||||
let _ = $item::<p256::NistP256>::deserialize(&$bytes[..]);
|
let _ = $item::<p256::NistP256>::deserialize(&$bytes[..]);
|
||||||
|
let _ = $item::<p384::NistP384>::deserialize(&$bytes[..]);
|
||||||
|
let _ = $item::<p521::NistP521>::deserialize(&$bytes[..]);
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
+915
-1027
File diff suppressed because it is too large
Load Diff
@@ -1,9 +1,10 @@
|
|||||||
// Copyright (c) Facebook, Inc. and its affiliates.
|
// Copyright (c) Meta Platforms, Inc. and affiliates.
|
||||||
//
|
//
|
||||||
// This source code is licensed under both the MIT license found in the
|
// 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 and the Apache
|
// 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
|
// License, Version 2.0 found in the LICENSE-APACHE file in the root directory
|
||||||
// of this source tree.
|
// of this source tree. You may select, at your option, one of the above-listed
|
||||||
|
// licenses.
|
||||||
|
|
||||||
use alloc::vec::Vec;
|
use alloc::vec::Vec;
|
||||||
use core::cmp::min;
|
use core::cmp::min;
|
||||||
@@ -50,7 +51,7 @@ impl RngCore for CycleRng {
|
|||||||
#[inline]
|
#[inline]
|
||||||
fn fill_bytes(&mut self, dest: &mut [u8]) {
|
fn fill_bytes(&mut self, dest: &mut [u8]) {
|
||||||
let len = min(self.v.len(), dest.len());
|
let len = min(self.v.len(), dest.len());
|
||||||
(&mut dest[..len]).copy_from_slice(&self.v[..len]);
|
dest[..len].copy_from_slice(&self.v[..len]);
|
||||||
rotate_left(&mut self.v, len);
|
rotate_left(&mut self.v, len);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
+5
-4
@@ -1,9 +1,10 @@
|
|||||||
// Copyright (c) Facebook, Inc. and its affiliates.
|
// Copyright (c) Meta Platforms, Inc. and affiliates.
|
||||||
//
|
//
|
||||||
// This source code is licensed under both the MIT license found in the
|
// 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 and the Apache
|
// 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
|
// License, Version 2.0 found in the LICENSE-APACHE file in the root directory
|
||||||
// of this source tree.
|
// of this source tree. You may select, at your option, one of the above-listed
|
||||||
|
// licenses.
|
||||||
|
|
||||||
mod cfrg_vectors;
|
mod cfrg_vectors;
|
||||||
mod mock_rng;
|
mod mock_rng;
|
||||||
|
|||||||
+9
-8
@@ -1,9 +1,10 @@
|
|||||||
// Copyright (c) Facebook, Inc. and its affiliates.
|
// Copyright (c) Meta Platforms, Inc. and affiliates.
|
||||||
//
|
//
|
||||||
// This source code is licensed under both the MIT license found in the
|
// 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 and the Apache
|
// 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
|
// License, Version 2.0 found in the LICENSE-APACHE file in the root directory
|
||||||
// of this source tree.
|
// of this source tree. You may select, at your option, one of the above-listed
|
||||||
|
// licenses.
|
||||||
|
|
||||||
use alloc::string::{String, ToString};
|
use alloc::string::{String, ToString};
|
||||||
use alloc::vec::Vec;
|
use alloc::vec::Vec;
|
||||||
@@ -14,7 +15,7 @@ pub(crate) fn rfc_to_json(input: &str) -> String {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fn parse_ciphersuites(input: &str) -> String {
|
fn parse_ciphersuites(input: &str) -> String {
|
||||||
let re = regex::Regex::new(r"## OPRF\((?P<ciphersuite>.+?)\)").unwrap();
|
let re = regex::Regex::new(r"\nA\.\d\. (?P<ciphersuite>.+?)\n\n").unwrap();
|
||||||
let mut ciphersuites = vec![];
|
let mut ciphersuites = vec![];
|
||||||
|
|
||||||
let chunks: Vec<&str> = re.split(input).collect();
|
let chunks: Vec<&str> = re.split(input).collect();
|
||||||
@@ -33,7 +34,7 @@ fn parse_ciphersuites(input: &str) -> String {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fn parse_modes(input: &str) -> String {
|
fn parse_modes(input: &str) -> String {
|
||||||
let re = regex::Regex::new(r"### (?P<mode>.*+) Mode").unwrap();
|
let re = regex::Regex::new(r"A\.\d.\d\. (?P<mode>.*?) Mode").unwrap();
|
||||||
let mut modes = vec![];
|
let mut modes = vec![];
|
||||||
|
|
||||||
let chunks: Vec<&str> = re.split(input).collect();
|
let chunks: Vec<&str> = re.split(input).collect();
|
||||||
@@ -52,7 +53,7 @@ fn parse_modes(input: &str) -> String {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fn parse_vectors(input: &str) -> String {
|
fn parse_vectors(input: &str) -> String {
|
||||||
let re = regex::Regex::new(r"Test Vector.*+\n").unwrap();
|
let re = regex::Regex::new(r"A\.\d.\d\.\d\. Test Vector.*+\n").unwrap();
|
||||||
let mut vectors = vec![];
|
let mut vectors = vec![];
|
||||||
|
|
||||||
let chunks: Vec<&str> = re.split(input).collect();
|
let chunks: Vec<&str> = re.split(input).collect();
|
||||||
@@ -96,7 +97,7 @@ fn parse_params(input: &str) -> String {
|
|||||||
let key = iter.next().unwrap().split_whitespace().next().unwrap();
|
let key = iter.next().unwrap().split_whitespace().next().unwrap();
|
||||||
let val = iter.next().unwrap().split_whitespace().next().unwrap();
|
let val = iter.next().unwrap().split_whitespace().next().unwrap();
|
||||||
|
|
||||||
param = format!(" \"{}\": \"{}", key, val);
|
param = format!(" \"{key}\": \"{val}");
|
||||||
} else {
|
} else {
|
||||||
let s = line.trim().to_string();
|
let s = line.trim().to_string();
|
||||||
if s.contains('~') || s.contains('#') {
|
if s.contains('~') || s.contains('#') {
|
||||||
|
|||||||
+94
-104
@@ -1,20 +1,16 @@
|
|||||||
// Copyright (c) Facebook, Inc. and its affiliates.
|
// Copyright (c) Meta Platforms, Inc. and affiliates.
|
||||||
//
|
//
|
||||||
// This source code is licensed under both the MIT license found in the
|
// 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 and the Apache
|
// 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
|
// License, Version 2.0 found in the LICENSE-APACHE file in the root directory
|
||||||
// of this source tree.
|
// of this source tree. You may select, at your option, one of the above-listed
|
||||||
|
// licenses.
|
||||||
|
|
||||||
use alloc::string::String;
|
use alloc::string::String;
|
||||||
use alloc::vec;
|
use alloc::vec;
|
||||||
use alloc::vec::Vec;
|
use alloc::vec::Vec;
|
||||||
use core::ops::Add;
|
|
||||||
|
|
||||||
use digest::core_api::BlockSizeUser;
|
use serde_json::Value;
|
||||||
use digest::OutputSizeUser;
|
|
||||||
use generic_array::typenum::{IsLess, IsLessOrEqual, Sum, U256};
|
|
||||||
use generic_array::ArrayLength;
|
|
||||||
use json::JsonValue;
|
|
||||||
|
|
||||||
use crate::tests::mock_rng::CycleRng;
|
use crate::tests::mock_rng::CycleRng;
|
||||||
use crate::tests::parser::*;
|
use crate::tests::parser::*;
|
||||||
@@ -40,7 +36,7 @@ struct VOPRFTestVectorParameters {
|
|||||||
output: Vec<Vec<u8>>,
|
output: Vec<Vec<u8>>,
|
||||||
}
|
}
|
||||||
|
|
||||||
fn populate_test_vectors(values: &JsonValue) -> VOPRFTestVectorParameters {
|
fn populate_test_vectors(values: &Value) -> VOPRFTestVectorParameters {
|
||||||
VOPRFTestVectorParameters {
|
VOPRFTestVectorParameters {
|
||||||
seed: decode(values, "Seed"),
|
seed: decode(values, "Seed"),
|
||||||
sksm: decode(values, "skSm"),
|
sksm: decode(values, "skSm"),
|
||||||
@@ -57,18 +53,18 @@ fn populate_test_vectors(values: &JsonValue) -> VOPRFTestVectorParameters {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fn decode(values: &JsonValue, key: &str) -> Vec<u8> {
|
fn decode(values: &Value, key: &str) -> Vec<u8> {
|
||||||
values[key]
|
values[key]
|
||||||
.as_str()
|
.as_str()
|
||||||
.and_then(|s| hex::decode(&s).ok())
|
.and_then(|s| hex::decode(s).ok())
|
||||||
.unwrap_or_default()
|
.unwrap_or_default()
|
||||||
}
|
}
|
||||||
|
|
||||||
fn decode_vec(values: &JsonValue, key: &str) -> Vec<Vec<u8>> {
|
fn decode_vec(values: &Value, key: &str) -> Vec<Vec<u8>> {
|
||||||
let s = values[key].as_str().unwrap();
|
let s = values[key].as_str().unwrap();
|
||||||
let res = match s.contains(',') {
|
let res = match s.contains(',') {
|
||||||
true => Some(s.split(',').map(|x| hex::decode(&x).unwrap()).collect()),
|
true => Some(s.split(',').map(|x| hex::decode(x).unwrap()).collect()),
|
||||||
false => Some(vec![hex::decode(&s).unwrap()]),
|
false => Some(vec![hex::decode(s).unwrap()]),
|
||||||
};
|
};
|
||||||
res.unwrap()
|
res.unwrap()
|
||||||
}
|
}
|
||||||
@@ -76,8 +72,10 @@ fn decode_vec(values: &JsonValue, key: &str) -> Vec<Vec<u8>> {
|
|||||||
macro_rules! json_to_test_vectors {
|
macro_rules! json_to_test_vectors {
|
||||||
( $v:ident, $cs:expr, $mode:expr ) => {
|
( $v:ident, $cs:expr, $mode:expr ) => {
|
||||||
$v[$cs][$mode]
|
$v[$cs][$mode]
|
||||||
.members()
|
.as_array()
|
||||||
.map(|x| populate_test_vectors(&x))
|
.into_iter()
|
||||||
|
.flatten()
|
||||||
|
.map(populate_test_vectors)
|
||||||
.collect::<Vec<VOPRFTestVectorParameters>>()
|
.collect::<Vec<VOPRFTestVectorParameters>>()
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
@@ -85,8 +83,10 @@ macro_rules! json_to_test_vectors {
|
|||||||
#[test]
|
#[test]
|
||||||
fn test_vectors() -> Result<()> {
|
fn test_vectors() -> Result<()> {
|
||||||
use p256::NistP256;
|
use p256::NistP256;
|
||||||
|
use p384::NistP384;
|
||||||
|
use p521::NistP521;
|
||||||
|
|
||||||
let rfc = json::parse(rfc_to_json(super::cfrg_vectors::VECTORS).as_str())
|
let rfc: Value = serde_json::from_str(rfc_to_json(super::cfrg_vectors::VECTORS).as_str())
|
||||||
.expect("Could not parse json");
|
.expect("Could not parse json");
|
||||||
|
|
||||||
#[cfg(feature = "ristretto255")]
|
#[cfg(feature = "ristretto255")]
|
||||||
@@ -95,7 +95,7 @@ fn test_vectors() -> Result<()> {
|
|||||||
|
|
||||||
let ristretto_oprf_tvs = json_to_test_vectors!(
|
let ristretto_oprf_tvs = json_to_test_vectors!(
|
||||||
rfc,
|
rfc,
|
||||||
String::from("ristretto255, SHA-512"),
|
String::from("ristretto255-SHA512"),
|
||||||
String::from("OPRF")
|
String::from("OPRF")
|
||||||
);
|
);
|
||||||
assert_ne!(ristretto_oprf_tvs.len(), 0);
|
assert_ne!(ristretto_oprf_tvs.len(), 0);
|
||||||
@@ -107,7 +107,7 @@ fn test_vectors() -> Result<()> {
|
|||||||
|
|
||||||
let ristretto_voprf_tvs = json_to_test_vectors!(
|
let ristretto_voprf_tvs = json_to_test_vectors!(
|
||||||
rfc,
|
rfc,
|
||||||
String::from("ristretto255, SHA-512"),
|
String::from("ristretto255-SHA512"),
|
||||||
String::from("VOPRF")
|
String::from("VOPRF")
|
||||||
);
|
);
|
||||||
assert_ne!(ristretto_voprf_tvs.len(), 0);
|
assert_ne!(ristretto_voprf_tvs.len(), 0);
|
||||||
@@ -119,7 +119,7 @@ fn test_vectors() -> Result<()> {
|
|||||||
|
|
||||||
let ristretto_poprf_tvs = json_to_test_vectors!(
|
let ristretto_poprf_tvs = json_to_test_vectors!(
|
||||||
rfc,
|
rfc,
|
||||||
String::from("ristretto255, SHA-512"),
|
String::from("ristretto255-SHA512"),
|
||||||
String::from("POPRF")
|
String::from("POPRF")
|
||||||
);
|
);
|
||||||
assert_ne!(ristretto_poprf_tvs.len(), 0);
|
assert_ne!(ristretto_poprf_tvs.len(), 0);
|
||||||
@@ -131,7 +131,7 @@ fn test_vectors() -> Result<()> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
let p256_oprf_tvs =
|
let p256_oprf_tvs =
|
||||||
json_to_test_vectors!(rfc, String::from("P-256, SHA-256"), String::from("OPRF"));
|
json_to_test_vectors!(rfc, String::from("P256-SHA256"), String::from("OPRF"));
|
||||||
assert_ne!(p256_oprf_tvs.len(), 0);
|
assert_ne!(p256_oprf_tvs.len(), 0);
|
||||||
test_oprf_seed_to_key::<NistP256>(&p256_oprf_tvs)?;
|
test_oprf_seed_to_key::<NistP256>(&p256_oprf_tvs)?;
|
||||||
test_oprf_blind::<NistP256>(&p256_oprf_tvs)?;
|
test_oprf_blind::<NistP256>(&p256_oprf_tvs)?;
|
||||||
@@ -140,7 +140,7 @@ fn test_vectors() -> Result<()> {
|
|||||||
test_oprf_evaluate::<NistP256>(&p256_oprf_tvs)?;
|
test_oprf_evaluate::<NistP256>(&p256_oprf_tvs)?;
|
||||||
|
|
||||||
let p256_voprf_tvs =
|
let p256_voprf_tvs =
|
||||||
json_to_test_vectors!(rfc, String::from("P-256, SHA-256"), String::from("VOPRF"));
|
json_to_test_vectors!(rfc, String::from("P256-SHA256"), String::from("VOPRF"));
|
||||||
assert_ne!(p256_voprf_tvs.len(), 0);
|
assert_ne!(p256_voprf_tvs.len(), 0);
|
||||||
test_voprf_seed_to_key::<NistP256>(&p256_voprf_tvs)?;
|
test_voprf_seed_to_key::<NistP256>(&p256_voprf_tvs)?;
|
||||||
test_voprf_blind::<NistP256>(&p256_voprf_tvs)?;
|
test_voprf_blind::<NistP256>(&p256_voprf_tvs)?;
|
||||||
@@ -149,7 +149,7 @@ fn test_vectors() -> Result<()> {
|
|||||||
test_voprf_evaluate::<NistP256>(&p256_voprf_tvs)?;
|
test_voprf_evaluate::<NistP256>(&p256_voprf_tvs)?;
|
||||||
|
|
||||||
let p256_poprf_tvs =
|
let p256_poprf_tvs =
|
||||||
json_to_test_vectors!(rfc, String::from("P-256, SHA-256"), String::from("POPRF"));
|
json_to_test_vectors!(rfc, String::from("P256-SHA256"), String::from("POPRF"));
|
||||||
assert_ne!(p256_poprf_tvs.len(), 0);
|
assert_ne!(p256_poprf_tvs.len(), 0);
|
||||||
test_poprf_seed_to_key::<NistP256>(&p256_poprf_tvs)?;
|
test_poprf_seed_to_key::<NistP256>(&p256_poprf_tvs)?;
|
||||||
test_poprf_blind::<NistP256>(&p256_poprf_tvs)?;
|
test_poprf_blind::<NistP256>(&p256_poprf_tvs)?;
|
||||||
@@ -157,14 +157,64 @@ fn test_vectors() -> Result<()> {
|
|||||||
test_poprf_finalize::<NistP256>(&p256_poprf_tvs)?;
|
test_poprf_finalize::<NistP256>(&p256_poprf_tvs)?;
|
||||||
test_poprf_evaluate::<NistP256>(&p256_poprf_tvs)?;
|
test_poprf_evaluate::<NistP256>(&p256_poprf_tvs)?;
|
||||||
|
|
||||||
|
let p384_oprf_tvs =
|
||||||
|
json_to_test_vectors!(rfc, String::from("P384-SHA384"), String::from("OPRF"));
|
||||||
|
assert_ne!(p384_oprf_tvs.len(), 0);
|
||||||
|
test_oprf_seed_to_key::<NistP384>(&p384_oprf_tvs)?;
|
||||||
|
test_oprf_blind::<NistP384>(&p384_oprf_tvs)?;
|
||||||
|
test_oprf_blind_evaluate::<NistP384>(&p384_oprf_tvs)?;
|
||||||
|
test_oprf_finalize::<NistP384>(&p384_oprf_tvs)?;
|
||||||
|
test_oprf_evaluate::<NistP384>(&p384_oprf_tvs)?;
|
||||||
|
|
||||||
|
let p384_voprf_tvs =
|
||||||
|
json_to_test_vectors!(rfc, String::from("P384-SHA384"), String::from("VOPRF"));
|
||||||
|
assert_ne!(p384_voprf_tvs.len(), 0);
|
||||||
|
test_voprf_seed_to_key::<NistP384>(&p384_voprf_tvs)?;
|
||||||
|
test_voprf_blind::<NistP384>(&p384_voprf_tvs)?;
|
||||||
|
test_voprf_blind_evaluate::<NistP384>(&p384_voprf_tvs)?;
|
||||||
|
test_voprf_finalize::<NistP384>(&p384_voprf_tvs)?;
|
||||||
|
test_voprf_evaluate::<NistP384>(&p384_voprf_tvs)?;
|
||||||
|
|
||||||
|
let p384_poprf_tvs =
|
||||||
|
json_to_test_vectors!(rfc, String::from("P384-SHA384"), String::from("POPRF"));
|
||||||
|
assert_ne!(p384_poprf_tvs.len(), 0);
|
||||||
|
test_poprf_seed_to_key::<NistP384>(&p384_poprf_tvs)?;
|
||||||
|
test_poprf_blind::<NistP384>(&p384_poprf_tvs)?;
|
||||||
|
test_poprf_blind_evaluate::<NistP384>(&p384_poprf_tvs)?;
|
||||||
|
test_poprf_finalize::<NistP384>(&p384_poprf_tvs)?;
|
||||||
|
test_poprf_evaluate::<NistP384>(&p384_poprf_tvs)?;
|
||||||
|
|
||||||
|
let p521_oprf_tvs =
|
||||||
|
json_to_test_vectors!(rfc, String::from("P521-SHA512"), String::from("OPRF"));
|
||||||
|
assert_ne!(p521_oprf_tvs.len(), 0);
|
||||||
|
test_oprf_seed_to_key::<NistP521>(&p521_oprf_tvs)?;
|
||||||
|
test_oprf_blind::<NistP521>(&p521_oprf_tvs)?;
|
||||||
|
test_oprf_blind_evaluate::<NistP521>(&p521_oprf_tvs)?;
|
||||||
|
test_oprf_finalize::<NistP521>(&p521_oprf_tvs)?;
|
||||||
|
test_oprf_evaluate::<NistP521>(&p521_oprf_tvs)?;
|
||||||
|
|
||||||
|
let p521_voprf_tvs =
|
||||||
|
json_to_test_vectors!(rfc, String::from("P521-SHA512"), String::from("VOPRF"));
|
||||||
|
assert_ne!(p521_voprf_tvs.len(), 0);
|
||||||
|
test_voprf_seed_to_key::<NistP521>(&p521_voprf_tvs)?;
|
||||||
|
test_voprf_blind::<NistP521>(&p521_voprf_tvs)?;
|
||||||
|
test_voprf_blind_evaluate::<NistP521>(&p521_voprf_tvs)?;
|
||||||
|
test_voprf_finalize::<NistP521>(&p521_voprf_tvs)?;
|
||||||
|
test_voprf_evaluate::<NistP521>(&p521_voprf_tvs)?;
|
||||||
|
|
||||||
|
let p521_poprf_tvs =
|
||||||
|
json_to_test_vectors!(rfc, String::from("P521-SHA512"), String::from("POPRF"));
|
||||||
|
assert_ne!(p521_poprf_tvs.len(), 0);
|
||||||
|
test_poprf_seed_to_key::<NistP521>(&p521_poprf_tvs)?;
|
||||||
|
test_poprf_blind::<NistP521>(&p521_poprf_tvs)?;
|
||||||
|
test_poprf_blind_evaluate::<NistP521>(&p521_poprf_tvs)?;
|
||||||
|
test_poprf_finalize::<NistP521>(&p521_poprf_tvs)?;
|
||||||
|
test_poprf_evaluate::<NistP521>(&p521_poprf_tvs)?;
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
fn test_oprf_seed_to_key<CS: CipherSuite>(tvs: &[VOPRFTestVectorParameters]) -> Result<()>
|
fn test_oprf_seed_to_key<CS: CipherSuite>(tvs: &[VOPRFTestVectorParameters]) -> Result<()> {
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
{
|
|
||||||
for parameters in tvs {
|
for parameters in tvs {
|
||||||
let server = OprfServer::<CS>::new_from_seed(¶meters.seed, ¶meters.key_info)?;
|
let server = OprfServer::<CS>::new_from_seed(¶meters.seed, ¶meters.key_info)?;
|
||||||
|
|
||||||
@@ -176,11 +226,7 @@ where
|
|||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
fn test_voprf_seed_to_key<CS: CipherSuite>(tvs: &[VOPRFTestVectorParameters]) -> Result<()>
|
fn test_voprf_seed_to_key<CS: CipherSuite>(tvs: &[VOPRFTestVectorParameters]) -> Result<()> {
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
{
|
|
||||||
for parameters in tvs {
|
for parameters in tvs {
|
||||||
let server = VoprfServer::<CS>::new_from_seed(¶meters.seed, ¶meters.key_info)?;
|
let server = VoprfServer::<CS>::new_from_seed(¶meters.seed, ¶meters.key_info)?;
|
||||||
|
|
||||||
@@ -196,11 +242,7 @@ where
|
|||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
fn test_poprf_seed_to_key<CS: CipherSuite>(tvs: &[VOPRFTestVectorParameters]) -> Result<()>
|
fn test_poprf_seed_to_key<CS: CipherSuite>(tvs: &[VOPRFTestVectorParameters]) -> Result<()> {
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
{
|
|
||||||
for parameters in tvs {
|
for parameters in tvs {
|
||||||
let server = PoprfServer::<CS>::new_from_seed(¶meters.seed, ¶meters.key_info)?;
|
let server = PoprfServer::<CS>::new_from_seed(¶meters.seed, ¶meters.key_info)?;
|
||||||
|
|
||||||
@@ -217,11 +259,7 @@ where
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Tests input -> blind, blinded_element
|
// Tests input -> blind, blinded_element
|
||||||
fn test_oprf_blind<CS: CipherSuite>(tvs: &[VOPRFTestVectorParameters]) -> Result<()>
|
fn test_oprf_blind<CS: CipherSuite>(tvs: &[VOPRFTestVectorParameters]) -> Result<()> {
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
{
|
|
||||||
for parameters in tvs {
|
for parameters in tvs {
|
||||||
for i in 0..parameters.input.len() {
|
for i in 0..parameters.input.len() {
|
||||||
let blind = CS::Group::deserialize_scalar(¶meters.blind[i])?;
|
let blind = CS::Group::deserialize_scalar(¶meters.blind[i])?;
|
||||||
@@ -242,11 +280,7 @@ where
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Tests input -> blind, blinded_element
|
// Tests input -> blind, blinded_element
|
||||||
fn test_voprf_blind<CS: CipherSuite>(tvs: &[VOPRFTestVectorParameters]) -> Result<()>
|
fn test_voprf_blind<CS: CipherSuite>(tvs: &[VOPRFTestVectorParameters]) -> Result<()> {
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
{
|
|
||||||
for parameters in tvs {
|
for parameters in tvs {
|
||||||
for i in 0..parameters.input.len() {
|
for i in 0..parameters.input.len() {
|
||||||
let blind = CS::Group::deserialize_scalar(¶meters.blind[i])?;
|
let blind = CS::Group::deserialize_scalar(¶meters.blind[i])?;
|
||||||
@@ -267,11 +301,7 @@ where
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Tests input -> blind, blinded_element
|
// Tests input -> blind, blinded_element
|
||||||
fn test_poprf_blind<CS: CipherSuite>(tvs: &[VOPRFTestVectorParameters]) -> Result<()>
|
fn test_poprf_blind<CS: CipherSuite>(tvs: &[VOPRFTestVectorParameters]) -> Result<()> {
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
{
|
|
||||||
for parameters in tvs {
|
for parameters in tvs {
|
||||||
for i in 0..parameters.input.len() {
|
for i in 0..parameters.input.len() {
|
||||||
let blind = CS::Group::deserialize_scalar(¶meters.blind[i])?;
|
let blind = CS::Group::deserialize_scalar(¶meters.blind[i])?;
|
||||||
@@ -292,11 +322,7 @@ where
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Tests sksm, blinded_element -> evaluation_element
|
// Tests sksm, blinded_element -> evaluation_element
|
||||||
fn test_oprf_blind_evaluate<CS: CipherSuite>(tvs: &[VOPRFTestVectorParameters]) -> Result<()>
|
fn test_oprf_blind_evaluate<CS: CipherSuite>(tvs: &[VOPRFTestVectorParameters]) -> Result<()> {
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
{
|
|
||||||
for parameters in tvs {
|
for parameters in tvs {
|
||||||
for i in 0..parameters.input.len() {
|
for i in 0..parameters.input.len() {
|
||||||
let server = OprfServer::<CS>::new_with_key(¶meters.sksm)?;
|
let server = OprfServer::<CS>::new_with_key(¶meters.sksm)?;
|
||||||
@@ -313,13 +339,7 @@ where
|
|||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
fn test_voprf_blind_evaluate<CS: CipherSuite>(tvs: &[VOPRFTestVectorParameters]) -> Result<()>
|
fn test_voprf_blind_evaluate<CS: CipherSuite>(tvs: &[VOPRFTestVectorParameters]) -> Result<()> {
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
<CS::Group as Group>::ScalarLen: Add<<CS::Group as Group>::ScalarLen>,
|
|
||||||
Sum<<CS::Group as Group>::ScalarLen, <CS::Group as Group>::ScalarLen>: ArrayLength<u8>,
|
|
||||||
{
|
|
||||||
for parameters in tvs {
|
for parameters in tvs {
|
||||||
let mut rng = CycleRng::new(parameters.proof_random_scalar.clone());
|
let mut rng = CycleRng::new(parameters.proof_random_scalar.clone());
|
||||||
let server = VoprfServer::<CS>::new_with_key(¶meters.sksm)?;
|
let server = VoprfServer::<CS>::new_with_key(¶meters.sksm)?;
|
||||||
@@ -345,13 +365,7 @@ where
|
|||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
fn test_poprf_blind_evaluate<CS: CipherSuite>(tvs: &[VOPRFTestVectorParameters]) -> Result<()>
|
fn test_poprf_blind_evaluate<CS: CipherSuite>(tvs: &[VOPRFTestVectorParameters]) -> Result<()> {
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
<CS::Group as Group>::ScalarLen: Add<<CS::Group as Group>::ScalarLen>,
|
|
||||||
Sum<<CS::Group as Group>::ScalarLen, <CS::Group as Group>::ScalarLen>: ArrayLength<u8>,
|
|
||||||
{
|
|
||||||
for parameters in tvs {
|
for parameters in tvs {
|
||||||
let mut rng = CycleRng::new(parameters.proof_random_scalar.clone());
|
let mut rng = CycleRng::new(parameters.proof_random_scalar.clone());
|
||||||
let server = PoprfServer::<CS>::new_with_key(¶meters.sksm)?;
|
let server = PoprfServer::<CS>::new_with_key(¶meters.sksm)?;
|
||||||
@@ -387,11 +401,7 @@ where
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Tests input, blind, evaluation_element -> output
|
// Tests input, blind, evaluation_element -> output
|
||||||
fn test_oprf_finalize<CS: CipherSuite>(tvs: &[VOPRFTestVectorParameters]) -> Result<()>
|
fn test_oprf_finalize<CS: CipherSuite>(tvs: &[VOPRFTestVectorParameters]) -> Result<()> {
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
{
|
|
||||||
for parameters in tvs {
|
for parameters in tvs {
|
||||||
for i in 0..parameters.input.len() {
|
for i in 0..parameters.input.len() {
|
||||||
let client =
|
let client =
|
||||||
@@ -408,11 +418,7 @@ where
|
|||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
fn test_voprf_finalize<CS: CipherSuite>(tvs: &[VOPRFTestVectorParameters]) -> Result<()>
|
fn test_voprf_finalize<CS: CipherSuite>(tvs: &[VOPRFTestVectorParameters]) -> Result<()> {
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
{
|
|
||||||
for parameters in tvs {
|
for parameters in tvs {
|
||||||
let mut clients = vec![];
|
let mut clients = vec![];
|
||||||
for i in 0..parameters.input.len() {
|
for i in 0..parameters.input.len() {
|
||||||
@@ -447,11 +453,7 @@ where
|
|||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
fn test_poprf_finalize<CS: CipherSuite>(tvs: &[VOPRFTestVectorParameters]) -> Result<()>
|
fn test_poprf_finalize<CS: CipherSuite>(tvs: &[VOPRFTestVectorParameters]) -> Result<()> {
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
{
|
|
||||||
for parameters in tvs {
|
for parameters in tvs {
|
||||||
let mut clients = vec![];
|
let mut clients = vec![];
|
||||||
for i in 0..parameters.input.len() {
|
for i in 0..parameters.input.len() {
|
||||||
@@ -485,11 +487,7 @@ where
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Tests input, sksm -> output
|
// Tests input, sksm -> output
|
||||||
fn test_oprf_evaluate<CS: CipherSuite>(tvs: &[VOPRFTestVectorParameters]) -> Result<()>
|
fn test_oprf_evaluate<CS: CipherSuite>(tvs: &[VOPRFTestVectorParameters]) -> Result<()> {
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
{
|
|
||||||
for parameters in tvs {
|
for parameters in tvs {
|
||||||
for i in 0..parameters.input.len() {
|
for i in 0..parameters.input.len() {
|
||||||
let server = OprfServer::<CS>::new_with_key(¶meters.sksm)?;
|
let server = OprfServer::<CS>::new_with_key(¶meters.sksm)?;
|
||||||
@@ -502,11 +500,7 @@ where
|
|||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
fn test_voprf_evaluate<CS: CipherSuite>(tvs: &[VOPRFTestVectorParameters]) -> Result<()>
|
fn test_voprf_evaluate<CS: CipherSuite>(tvs: &[VOPRFTestVectorParameters]) -> Result<()> {
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
{
|
|
||||||
for parameters in tvs {
|
for parameters in tvs {
|
||||||
for i in 0..parameters.input.len() {
|
for i in 0..parameters.input.len() {
|
||||||
let server = VoprfServer::<CS>::new_with_key(¶meters.sksm)?;
|
let server = VoprfServer::<CS>::new_with_key(¶meters.sksm)?;
|
||||||
@@ -519,11 +513,7 @@ where
|
|||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
fn test_poprf_evaluate<CS: CipherSuite>(tvs: &[VOPRFTestVectorParameters]) -> Result<()>
|
fn test_poprf_evaluate<CS: CipherSuite>(tvs: &[VOPRFTestVectorParameters]) -> Result<()> {
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
{
|
|
||||||
for parameters in tvs {
|
for parameters in tvs {
|
||||||
for i in 0..parameters.input.len() {
|
for i in 0..parameters.input.len() {
|
||||||
let server = PoprfServer::<CS>::new_with_key(¶meters.sksm)?;
|
let server = PoprfServer::<CS>::new_with_key(¶meters.sksm)?;
|
||||||
|
|||||||
+57
-117
@@ -1,9 +1,10 @@
|
|||||||
// Copyright (c) Facebook, Inc. and its affiliates.
|
// Copyright (c) Meta Platforms, Inc. and affiliates.
|
||||||
//
|
//
|
||||||
// This source code is licensed under both the MIT license found in the
|
// 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 and the Apache
|
// 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
|
// License, Version 2.0 found in the LICENSE-APACHE file in the root directory
|
||||||
// of this source tree.
|
// of this source tree. You may select, at your option, one of the above-listed
|
||||||
|
// licenses.
|
||||||
|
|
||||||
//! Contains the main VOPRF API
|
//! Contains the main VOPRF API
|
||||||
|
|
||||||
@@ -12,9 +13,8 @@ use alloc::vec::Vec;
|
|||||||
use core::iter::{self, Map, Repeat, Zip};
|
use core::iter::{self, Map, Repeat, Zip};
|
||||||
|
|
||||||
use derive_where::derive_where;
|
use derive_where::derive_where;
|
||||||
use digest::core_api::BlockSizeUser;
|
use digest::{Digest, Output};
|
||||||
use digest::{Digest, Output, OutputSizeUser};
|
use generic_array::typenum::Unsigned;
|
||||||
use generic_array::typenum::{IsLess, IsLessOrEqual, Unsigned, U256};
|
|
||||||
use generic_array::GenericArray;
|
use generic_array::GenericArray;
|
||||||
use rand_core::{CryptoRng, RngCore};
|
use rand_core::{CryptoRng, RngCore};
|
||||||
|
|
||||||
@@ -39,13 +39,9 @@ use crate::{CipherSuite, Error, Group, Result};
|
|||||||
#[cfg_attr(
|
#[cfg_attr(
|
||||||
feature = "serde",
|
feature = "serde",
|
||||||
derive(serde::Deserialize, serde::Serialize),
|
derive(serde::Deserialize, serde::Serialize),
|
||||||
serde(crate = "serde", bound = "")
|
serde(bound = "")
|
||||||
)]
|
)]
|
||||||
pub struct VoprfClient<CS: CipherSuite>
|
pub struct VoprfClient<CS: CipherSuite> {
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
{
|
|
||||||
#[cfg_attr(feature = "serde", serde(with = "Scalar::<CS::Group>"))]
|
#[cfg_attr(feature = "serde", serde(with = "Scalar::<CS::Group>"))]
|
||||||
pub(crate) blind: <CS::Group as Group>::Scalar,
|
pub(crate) blind: <CS::Group as Group>::Scalar,
|
||||||
#[cfg_attr(feature = "serde", serde(with = "Element::<CS::Group>"))]
|
#[cfg_attr(feature = "serde", serde(with = "Element::<CS::Group>"))]
|
||||||
@@ -59,13 +55,9 @@ where
|
|||||||
#[cfg_attr(
|
#[cfg_attr(
|
||||||
feature = "serde",
|
feature = "serde",
|
||||||
derive(serde::Deserialize, serde::Serialize),
|
derive(serde::Deserialize, serde::Serialize),
|
||||||
serde(crate = "serde", bound = "")
|
serde(bound = "")
|
||||||
)]
|
)]
|
||||||
pub struct VoprfServer<CS: CipherSuite>
|
pub struct VoprfServer<CS: CipherSuite> {
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
{
|
|
||||||
#[cfg_attr(feature = "serde", serde(with = "Scalar::<CS::Group>"))]
|
#[cfg_attr(feature = "serde", serde(with = "Scalar::<CS::Group>"))]
|
||||||
pub(crate) sk: <CS::Group as Group>::Scalar,
|
pub(crate) sk: <CS::Group as Group>::Scalar,
|
||||||
#[cfg_attr(feature = "serde", serde(with = "Element::<CS::Group>"))]
|
#[cfg_attr(feature = "serde", serde(with = "Element::<CS::Group>"))]
|
||||||
@@ -77,11 +69,7 @@ where
|
|||||||
// =================== //
|
// =================== //
|
||||||
/////////////////////////
|
/////////////////////////
|
||||||
|
|
||||||
impl<CS: CipherSuite> VoprfClient<CS>
|
impl<CS: CipherSuite> VoprfClient<CS> {
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
{
|
|
||||||
/// Computes the first step for the multiplicative blinding version of
|
/// Computes the first step for the multiplicative blinding version of
|
||||||
/// DH-OPRF.
|
/// DH-OPRF.
|
||||||
///
|
///
|
||||||
@@ -160,7 +148,7 @@ where
|
|||||||
///
|
///
|
||||||
/// The resulting messages can each fail individually with [`Error::Input`]
|
/// The resulting messages can each fail individually with [`Error::Input`]
|
||||||
/// if the `input` is empty or longer then [`u16::MAX`].
|
/// if the `input` is empty or longer then [`u16::MAX`].
|
||||||
pub fn batch_finalize<'a, I: 'a, II, IC, IM>(
|
pub fn batch_finalize<'a, I, II, IC, IM>(
|
||||||
inputs: &'a II,
|
inputs: &'a II,
|
||||||
clients: &'a IC,
|
clients: &'a IC,
|
||||||
messages: &'a IM,
|
messages: &'a IM,
|
||||||
@@ -169,7 +157,7 @@ where
|
|||||||
) -> Result<VoprfClientBatchFinalizeResult<'a, CS, I, II, IC, IM>>
|
) -> Result<VoprfClientBatchFinalizeResult<'a, CS, I, II, IC, IM>>
|
||||||
where
|
where
|
||||||
CS: 'a,
|
CS: 'a,
|
||||||
I: AsRef<[u8]>,
|
I: 'a + AsRef<[u8]>,
|
||||||
&'a II: 'a + IntoIterator<Item = I>,
|
&'a II: 'a + IntoIterator<Item = I>,
|
||||||
<&'a II as IntoIterator>::IntoIter: ExactSizeIterator,
|
<&'a II as IntoIterator>::IntoIter: ExactSizeIterator,
|
||||||
&'a IC: 'a + IntoIterator<Item = &'a VoprfClient<CS>>,
|
&'a IC: 'a + IntoIterator<Item = &'a VoprfClient<CS>>,
|
||||||
@@ -196,18 +184,14 @@ where
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Only used for test functions
|
/// Only used for test functions
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
pub fn get_blind(&self) -> <CS::Group as Group>::Scalar {
|
pub fn get_blind(&self) -> <CS::Group as Group>::Scalar {
|
||||||
self.blind
|
self.blind
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<CS: CipherSuite> VoprfServer<CS>
|
impl<CS: CipherSuite> VoprfServer<CS> {
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
{
|
|
||||||
/// Produces a new instance of a [VoprfServer] using a supplied RNG
|
/// Produces a new instance of a [VoprfServer] using a supplied RNG
|
||||||
///
|
///
|
||||||
/// # Errors
|
/// # Errors
|
||||||
@@ -245,7 +229,7 @@ where
|
|||||||
Ok(Self { sk, pk })
|
Ok(Self { sk, pk })
|
||||||
}
|
}
|
||||||
|
|
||||||
// Only used for tests
|
/// Only used for tests
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
pub fn get_private_key(&self) -> <CS::Group as Group>::Scalar {
|
pub fn get_private_key(&self) -> <CS::Group as Group>::Scalar {
|
||||||
self.sk
|
self.sk
|
||||||
@@ -401,11 +385,7 @@ where
|
|||||||
|
|
||||||
/// Contains the fields that are returned by a verifiable client blind
|
/// Contains the fields that are returned by a verifiable client blind
|
||||||
#[derive_where(Debug; <CS::Group as Group>::Scalar, <CS::Group as Group>::Elem)]
|
#[derive_where(Debug; <CS::Group as Group>::Scalar, <CS::Group as Group>::Elem)]
|
||||||
pub struct VoprfClientBlindResult<CS: CipherSuite>
|
pub struct VoprfClientBlindResult<CS: CipherSuite> {
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
{
|
|
||||||
/// The state to be persisted on the client
|
/// The state to be persisted on the client
|
||||||
pub state: VoprfClient<CS>,
|
pub state: VoprfClient<CS>,
|
||||||
/// The message to send to the server
|
/// The message to send to the server
|
||||||
@@ -422,11 +402,7 @@ pub type VoprfClientBatchFinalizeResult<'a, C, I, II, IC, IM> = FinalizeAfterUnb
|
|||||||
|
|
||||||
/// Contains the fields that are returned by a verifiable server evaluate
|
/// Contains the fields that are returned by a verifiable server evaluate
|
||||||
#[derive_where(Debug; <CS::Group as Group>::Scalar, <CS::Group as Group>::Elem)]
|
#[derive_where(Debug; <CS::Group as Group>::Scalar, <CS::Group as Group>::Elem)]
|
||||||
pub struct VoprfServerEvaluateResult<CS: CipherSuite>
|
pub struct VoprfServerEvaluateResult<CS: CipherSuite> {
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
{
|
|
||||||
/// The message to send to the client
|
/// The message to send to the client
|
||||||
pub message: EvaluationElement<CS>,
|
pub message: EvaluationElement<CS>,
|
||||||
/// The proof for the client to verify
|
/// The proof for the client to verify
|
||||||
@@ -436,11 +412,7 @@ where
|
|||||||
/// Contains the fields that are returned by a verifiable server batch evaluate
|
/// Contains the fields that are returned by a verifiable server batch evaluate
|
||||||
#[derive_where(Debug; <CS::Group as Group>::Scalar, <CS::Group as Group>::Elem)]
|
#[derive_where(Debug; <CS::Group as Group>::Scalar, <CS::Group as Group>::Elem)]
|
||||||
#[cfg(feature = "alloc")]
|
#[cfg(feature = "alloc")]
|
||||||
pub struct VoprfServerBatchEvaluateResult<CS: CipherSuite>
|
pub struct VoprfServerBatchEvaluateResult<CS: CipherSuite> {
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
{
|
|
||||||
/// The messages to send to the client
|
/// The messages to send to the client
|
||||||
pub messages: Vec<EvaluationElement<CS>>,
|
pub messages: Vec<EvaluationElement<CS>>,
|
||||||
/// The proof for the client to verify
|
/// The proof for the client to verify
|
||||||
@@ -471,8 +443,6 @@ pub type VoprfServerBatchEvaluateFinishedMessages<'a, CS, I> = Map<
|
|||||||
#[derive_where(Debug; <&'a I as IntoIterator>::IntoIter, <CS::Group as Group>::Scalar)]
|
#[derive_where(Debug; <&'a I as IntoIterator>::IntoIter, <CS::Group as Group>::Scalar)]
|
||||||
pub struct VoprfServerBatchEvaluateFinishResult<'a, CS: 'a + CipherSuite, I>
|
pub struct VoprfServerBatchEvaluateFinishResult<'a, CS: 'a + CipherSuite, I>
|
||||||
where
|
where
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
&'a I: IntoIterator<Item = &'a PreparedEvaluationElement<CS>>,
|
&'a I: IntoIterator<Item = &'a PreparedEvaluationElement<CS>>,
|
||||||
{
|
{
|
||||||
/// The [`EvaluationElement`]s to send to the client
|
/// The [`EvaluationElement`]s to send to the client
|
||||||
@@ -510,8 +480,6 @@ fn verifiable_unblind<'a, CS: 'a + CipherSuite, IC, IM>(
|
|||||||
proof: &Proof<CS>,
|
proof: &Proof<CS>,
|
||||||
) -> Result<VoprfUnblindResult<'a, CS, IC, IM>>
|
) -> Result<VoprfUnblindResult<'a, CS, IC, IM>>
|
||||||
where
|
where
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
&'a IC: 'a + IntoIterator<Item = &'a VoprfClient<CS>>,
|
&'a IC: 'a + IntoIterator<Item = &'a VoprfClient<CS>>,
|
||||||
<&'a IC as IntoIterator>::IntoIter: ExactSizeIterator,
|
<&'a IC as IntoIterator>::IntoIter: ExactSizeIterator,
|
||||||
&'a IM: 'a + IntoIterator<Item = &'a EvaluationElement<CS>>,
|
&'a IM: 'a + IntoIterator<Item = &'a EvaluationElement<CS>>,
|
||||||
@@ -536,7 +504,7 @@ where
|
|||||||
)?;
|
)?;
|
||||||
|
|
||||||
Ok(blinds
|
Ok(blinds
|
||||||
.zip(messages.into_iter())
|
.zip(messages)
|
||||||
.map(|(blind, x)| x.0 * &CS::Group::invert_scalar(blind)))
|
.map(|(blind, x)| x.0 * &CS::Group::invert_scalar(blind)))
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -553,11 +521,7 @@ fn finalize_after_unblind<
|
|||||||
IE: 'a + Iterator<Item = (I, <CS::Group as Group>::Elem)>,
|
IE: 'a + Iterator<Item = (I, <CS::Group as Group>::Elem)>,
|
||||||
>(
|
>(
|
||||||
inputs_and_unblinded_elements: IE,
|
inputs_and_unblinded_elements: IE,
|
||||||
) -> FinalizeAfterUnblindResult<'a, CS, I, IE>
|
) -> FinalizeAfterUnblindResult<'a, CS, I, IE> {
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
{
|
|
||||||
inputs_and_unblinded_elements.map(|(input, unblinded_element)| {
|
inputs_and_unblinded_elements.map(|(input, unblinded_element)| {
|
||||||
let elem_len = <CS::Group as Group>::ElemLen::U16.to_be_bytes();
|
let elem_len = <CS::Group as Group>::ElemLen::U16.to_be_bytes();
|
||||||
|
|
||||||
@@ -582,31 +546,23 @@ where
|
|||||||
|
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
mod tests {
|
mod tests {
|
||||||
use core::ops::Add;
|
|
||||||
use core::ptr;
|
use core::ptr;
|
||||||
|
|
||||||
use ::alloc::vec;
|
use ::alloc::vec;
|
||||||
use ::alloc::vec::Vec;
|
use ::alloc::vec::Vec;
|
||||||
use generic_array::sequence::Concat;
|
|
||||||
use generic_array::typenum::Sum;
|
|
||||||
use generic_array::ArrayLength;
|
|
||||||
use rand::rngs::OsRng;
|
use rand::rngs::OsRng;
|
||||||
|
|
||||||
use super::*;
|
use super::*;
|
||||||
use crate::common::{create_context_string, STR_HASH_TO_GROUP};
|
use crate::common::{Dst, STR_HASH_TO_GROUP};
|
||||||
use crate::Group;
|
use crate::Group;
|
||||||
|
|
||||||
fn prf<CS: CipherSuite>(
|
fn prf<CS: CipherSuite>(
|
||||||
input: &[u8],
|
input: &[u8],
|
||||||
key: <CS::Group as Group>::Scalar,
|
key: <CS::Group as Group>::Scalar,
|
||||||
mode: Mode,
|
mode: Mode,
|
||||||
) -> Output<CS::Hash>
|
) -> Output<CS::Hash> {
|
||||||
where
|
let dst = Dst::new::<CS, _, _>(STR_HASH_TO_GROUP, mode);
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
let point = CS::Group::hash_to_curve::<CS::Hash>(&[input], &dst.as_dst()).unwrap();
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
{
|
|
||||||
let dst = GenericArray::from(STR_HASH_TO_GROUP).concat(create_context_string::<CS>(mode));
|
|
||||||
let point = CS::Group::hash_to_curve::<CS::Hash>(&[input], &dst).unwrap();
|
|
||||||
|
|
||||||
let res = point * &key;
|
let res = point * &key;
|
||||||
|
|
||||||
@@ -616,11 +572,7 @@ mod tests {
|
|||||||
.unwrap()
|
.unwrap()
|
||||||
}
|
}
|
||||||
|
|
||||||
fn verifiable_retrieval<CS: CipherSuite>()
|
fn verifiable_retrieval<CS: CipherSuite>() {
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
{
|
|
||||||
let input = b"input";
|
let input = b"input";
|
||||||
let mut rng = OsRng;
|
let mut rng = OsRng;
|
||||||
let client_blind_result = VoprfClient::<CS>::blind(input, &mut rng).unwrap();
|
let client_blind_result = VoprfClient::<CS>::blind(input, &mut rng).unwrap();
|
||||||
@@ -639,11 +591,7 @@ mod tests {
|
|||||||
assert_eq!(client_finalize_result, res2);
|
assert_eq!(client_finalize_result, res2);
|
||||||
}
|
}
|
||||||
|
|
||||||
fn verifiable_batch_retrieval<CS: CipherSuite>()
|
fn verifiable_batch_retrieval<CS: CipherSuite>() {
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
{
|
|
||||||
let mut rng = OsRng;
|
let mut rng = OsRng;
|
||||||
let mut inputs = vec![];
|
let mut inputs = vec![];
|
||||||
let mut client_states = vec![];
|
let mut client_states = vec![];
|
||||||
@@ -687,11 +635,7 @@ mod tests {
|
|||||||
assert_eq!(client_finalize_result, res2);
|
assert_eq!(client_finalize_result, res2);
|
||||||
}
|
}
|
||||||
|
|
||||||
fn verifiable_batch_bad_public_key<CS: CipherSuite>()
|
fn verifiable_batch_bad_public_key<CS: CipherSuite>() {
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
{
|
|
||||||
let mut rng = OsRng;
|
let mut rng = OsRng;
|
||||||
let mut inputs = vec![];
|
let mut inputs = vec![];
|
||||||
let mut client_states = vec![];
|
let mut client_states = vec![];
|
||||||
@@ -718,31 +662,25 @@ mod tests {
|
|||||||
.unwrap();
|
.unwrap();
|
||||||
let messages: Vec<_> = messages.collect();
|
let messages: Vec<_> = messages.collect();
|
||||||
let wrong_pk = {
|
let wrong_pk = {
|
||||||
let dst = GenericArray::from(STR_HASH_TO_GROUP)
|
let dst = Dst::new::<CS, _, _>(STR_HASH_TO_GROUP, Mode::Oprf);
|
||||||
.concat(create_context_string::<CS>(Mode::Oprf));
|
|
||||||
// Choose a group element that is unlikely to be the right public key
|
// Choose a group element that is unlikely to be the right public key
|
||||||
CS::Group::hash_to_curve::<CS::Hash>(&[b"msg"], &dst).unwrap()
|
CS::Group::hash_to_curve::<CS::Hash>(&[b"msg"], &dst.as_dst()).unwrap()
|
||||||
};
|
};
|
||||||
let client_finalize_result =
|
let client_finalize_result =
|
||||||
VoprfClient::batch_finalize(&inputs, &client_states, &messages, &proof, wrong_pk);
|
VoprfClient::batch_finalize(&inputs, &client_states, &messages, &proof, wrong_pk);
|
||||||
assert!(client_finalize_result.is_err());
|
assert!(client_finalize_result.is_err());
|
||||||
}
|
}
|
||||||
|
|
||||||
fn verifiable_bad_public_key<CS: CipherSuite>()
|
fn verifiable_bad_public_key<CS: CipherSuite>() {
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
{
|
|
||||||
let input = b"input";
|
let input = b"input";
|
||||||
let mut rng = OsRng;
|
let mut rng = OsRng;
|
||||||
let client_blind_result = VoprfClient::<CS>::blind(input, &mut rng).unwrap();
|
let client_blind_result = VoprfClient::<CS>::blind(input, &mut rng).unwrap();
|
||||||
let server = VoprfServer::<CS>::new(&mut rng).unwrap();
|
let server = VoprfServer::<CS>::new(&mut rng).unwrap();
|
||||||
let server_result = server.blind_evaluate(&mut rng, &client_blind_result.message);
|
let server_result = server.blind_evaluate(&mut rng, &client_blind_result.message);
|
||||||
let wrong_pk = {
|
let wrong_pk = {
|
||||||
let dst = GenericArray::from(STR_HASH_TO_GROUP)
|
let dst = Dst::new::<CS, _, _>(STR_HASH_TO_GROUP, Mode::Oprf);
|
||||||
.concat(create_context_string::<CS>(Mode::Oprf));
|
|
||||||
// Choose a group element that is unlikely to be the right public key
|
// Choose a group element that is unlikely to be the right public key
|
||||||
CS::Group::hash_to_curve::<CS::Hash>(&[b"msg"], &dst).unwrap()
|
CS::Group::hash_to_curve::<CS::Hash>(&[b"msg"], &dst.as_dst()).unwrap()
|
||||||
};
|
};
|
||||||
let client_finalize_result = client_blind_result.state.finalize(
|
let client_finalize_result = client_blind_result.state.finalize(
|
||||||
input,
|
input,
|
||||||
@@ -753,11 +691,7 @@ mod tests {
|
|||||||
assert!(client_finalize_result.is_err());
|
assert!(client_finalize_result.is_err());
|
||||||
}
|
}
|
||||||
|
|
||||||
fn verifiable_server_evaluate<CS: CipherSuite>()
|
fn verifiable_server_evaluate<CS: CipherSuite>() {
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
{
|
|
||||||
let input = b"input";
|
let input = b"input";
|
||||||
let mut rng = OsRng;
|
let mut rng = OsRng;
|
||||||
let client_blind_result = VoprfClient::<CS>::blind(input, &mut rng).unwrap();
|
let client_blind_result = VoprfClient::<CS>::blind(input, &mut rng).unwrap();
|
||||||
@@ -786,13 +720,7 @@ mod tests {
|
|||||||
assert!(client_finalize != server_evaluate);
|
assert!(client_finalize != server_evaluate);
|
||||||
}
|
}
|
||||||
|
|
||||||
fn zeroize_voprf_client<CS: CipherSuite>()
|
fn zeroize_voprf_client<CS: CipherSuite>() {
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
<CS::Group as Group>::ScalarLen: Add<<CS::Group as Group>::ElemLen>,
|
|
||||||
Sum<<CS::Group as Group>::ScalarLen, <CS::Group as Group>::ElemLen>: ArrayLength<u8>,
|
|
||||||
{
|
|
||||||
let input = b"input";
|
let input = b"input";
|
||||||
let mut rng = OsRng;
|
let mut rng = OsRng;
|
||||||
let client_blind_result = VoprfClient::<CS>::blind(input, &mut rng).unwrap();
|
let client_blind_result = VoprfClient::<CS>::blind(input, &mut rng).unwrap();
|
||||||
@@ -806,15 +734,7 @@ mod tests {
|
|||||||
assert!(message.serialize().iter().all(|&x| x == 0));
|
assert!(message.serialize().iter().all(|&x| x == 0));
|
||||||
}
|
}
|
||||||
|
|
||||||
fn zeroize_voprf_server<CS: CipherSuite>()
|
fn zeroize_voprf_server<CS: CipherSuite>() {
|
||||||
where
|
|
||||||
<CS::Hash as OutputSizeUser>::OutputSize:
|
|
||||||
IsLess<U256> + IsLessOrEqual<<CS::Hash as BlockSizeUser>::BlockSize>,
|
|
||||||
<CS::Group as Group>::ScalarLen: Add<<CS::Group as Group>::ElemLen>,
|
|
||||||
Sum<<CS::Group as Group>::ScalarLen, <CS::Group as Group>::ElemLen>: ArrayLength<u8>,
|
|
||||||
<CS::Group as Group>::ScalarLen: Add<<CS::Group as Group>::ScalarLen>,
|
|
||||||
Sum<<CS::Group as Group>::ScalarLen, <CS::Group as Group>::ScalarLen>: ArrayLength<u8>,
|
|
||||||
{
|
|
||||||
let input = b"input";
|
let input = b"input";
|
||||||
let mut rng = OsRng;
|
let mut rng = OsRng;
|
||||||
let client_blind_result = VoprfClient::<CS>::blind(input, &mut rng).unwrap();
|
let client_blind_result = VoprfClient::<CS>::blind(input, &mut rng).unwrap();
|
||||||
@@ -837,6 +757,8 @@ mod tests {
|
|||||||
#[test]
|
#[test]
|
||||||
fn test_functionality() -> Result<()> {
|
fn test_functionality() -> Result<()> {
|
||||||
use p256::NistP256;
|
use p256::NistP256;
|
||||||
|
use p384::NistP384;
|
||||||
|
use p521::NistP521;
|
||||||
|
|
||||||
#[cfg(feature = "ristretto255")]
|
#[cfg(feature = "ristretto255")]
|
||||||
{
|
{
|
||||||
@@ -861,6 +783,24 @@ mod tests {
|
|||||||
zeroize_voprf_client::<NistP256>();
|
zeroize_voprf_client::<NistP256>();
|
||||||
zeroize_voprf_server::<NistP256>();
|
zeroize_voprf_server::<NistP256>();
|
||||||
|
|
||||||
|
verifiable_retrieval::<NistP384>();
|
||||||
|
verifiable_batch_retrieval::<NistP384>();
|
||||||
|
verifiable_bad_public_key::<NistP384>();
|
||||||
|
verifiable_batch_bad_public_key::<NistP384>();
|
||||||
|
verifiable_server_evaluate::<NistP384>();
|
||||||
|
|
||||||
|
zeroize_voprf_client::<NistP384>();
|
||||||
|
zeroize_voprf_server::<NistP384>();
|
||||||
|
|
||||||
|
verifiable_retrieval::<NistP521>();
|
||||||
|
verifiable_batch_retrieval::<NistP521>();
|
||||||
|
verifiable_bad_public_key::<NistP521>();
|
||||||
|
verifiable_batch_bad_public_key::<NistP521>();
|
||||||
|
verifiable_server_evaluate::<NistP521>();
|
||||||
|
|
||||||
|
zeroize_voprf_client::<NistP521>();
|
||||||
|
zeroize_voprf_server::<NistP521>();
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user