chore: update more dependencies (#145)

* update more dependencies

* cargo fmt

* address review comments

* fix format
This commit is contained in:
raphaelrobert
2026-01-25 14:37:55 -08:00
committed by GitHub
parent f23cdfab2d
commit a22d46fd96
10 changed files with 88 additions and 47 deletions
+3 -3
View File
@@ -34,12 +34,12 @@ elliptic-curve = { version = "0.13", features = [
"voprf", "voprf",
] } ] }
generic-array = "1" generic-array = "1"
rand_core = { version = "0.6", default-features = false } rand_core = { version = "0.9", default-features = false }
serde = { version = "1", 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 }
subtle = { version = "2.3", default-features = false } subtle = { version = "2.6", default-features = false }
zeroize = { version = "1.5", default-features = false } zeroize = { version = "1.5", default-features = false }
[dev-dependencies] [dev-dependencies]
@@ -58,7 +58,7 @@ p521 = { version = "0.13.3", default-features = false, features = [
"voprf", "voprf",
] } ] }
proptest = "1" proptest = "1"
rand = "0.8" rand = "0.9"
regex = "1" regex = "1"
serde_json = "1" serde_json = "1"
sha2 = "0.10" sha2 = "0.10"
+3 -3
View File
@@ -16,7 +16,7 @@ use digest::{Digest, Output, OutputSizeUser};
use generic_array::sequence::Concat; use generic_array::sequence::Concat;
use generic_array::typenum::{IsLess, Unsigned, U2, U256, U9}; 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::{TryCryptoRng, TryRngCore};
use subtle::ConstantTimeEq; use subtle::ConstantTimeEq;
#[cfg(feature = "serde")] #[cfg(feature = "serde")]
@@ -128,7 +128,7 @@ pub struct Proof<CS: CipherSuite> {
/// Can only fail with [`Error::Batch`]. /// Can only fail with [`Error::Batch`].
#[allow(clippy::many_single_char_names)] #[allow(clippy::many_single_char_names)]
pub(crate) fn generate_proof<CS: CipherSuite, R: RngCore + CryptoRng>( pub(crate) fn generate_proof<CS: CipherSuite, R: TryRngCore + TryCryptoRng>(
rng: &mut R, rng: &mut R,
k: <CS::Group as Group>::Scalar, k: <CS::Group as Group>::Scalar,
a: <CS::Group as Group>::Elem, a: <CS::Group as Group>::Elem,
@@ -141,7 +141,7 @@ pub(crate) fn generate_proof<CS: CipherSuite, R: RngCore + CryptoRng>(
let (m, z) = compute_composites::<CS, _, _>(Some(k), b, cs, ds, mode)?; let (m, z) = compute_composites::<CS, _, _>(Some(k), b, cs, ds, mode)?;
let r = CS::Group::random_scalar(rng); let r = CS::Group::random_scalar(rng)?;
let t2 = a * &r; let t2 = a * &r;
let t3 = m * &r; let t3 = m * &r;
+2
View File
@@ -28,6 +28,8 @@ pub enum Error {
ProofVerification, ProofVerification,
/// The protocol has failed and can't be completed. /// The protocol has failed and can't be completed.
Protocol, Protocol,
/// Random number generator failure.
Rng,
} }
/// Only used to implement [`Group`](crate::Group). /// Only used to implement [`Group`](crate::Group).
+43 -3
View File
@@ -6,6 +6,7 @@
// of this source tree. You may select, at your option, one of the above-listed // of this source tree. You may select, at your option, one of the above-listed
// licenses. // licenses.
use core::num::NonZeroU32;
use core::ops::Add; use core::ops::Add;
use digest::core_api::BlockSizeUser; use digest::core_api::BlockSizeUser;
@@ -19,7 +20,7 @@ use elliptic_curve::{
}; };
use generic_array::typenum::{IsLess, IsLessOrEqual, Sum, 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::{TryCryptoRng, TryRngCore};
use super::Group; use super::Group;
use crate::{Error, InternalError, Result}; use crate::{Error, InternalError, Result};
@@ -93,8 +94,8 @@ where
.map_err(|_| Error::Deserialization) .map_err(|_| Error::Deserialization)
} }
fn random_scalar<R: RngCore + CryptoRng>(rng: &mut R) -> Self::Scalar { fn random_scalar<R: TryRngCore + TryCryptoRng>(rng: &mut R) -> Result<Self::Scalar> {
*SecretKey::<Self>::random(rng).to_nonzero_scalar() Ok(*SecretKey::<Self>::random(&mut CompatRng(rng)).to_nonzero_scalar())
} }
fn invert_scalar(scalar: Self::Scalar) -> Self::Scalar { fn invert_scalar(scalar: Self::Scalar) -> Self::Scalar {
@@ -123,3 +124,42 @@ where
.map_err(|_| Error::Deserialization) .map_err(|_| Error::Deserialization)
} }
} }
/// Adapter allowing `rand_core 0.9` RNGs to satisfy the `elliptic_curve` 0.13
/// requirement for `rand_core 0.6` traits.
///
/// TODO #150: Remove this adapter when `elliptic_curve` migrates to `rand_core
/// 0.9`.
struct CompatRng<'a, R>(&'a mut R);
impl<'a, R> elliptic_curve::rand_core::RngCore for CompatRng<'a, R>
where
R: TryRngCore,
{
fn next_u32(&mut self) -> u32 {
self.0.try_next_u32().expect("RNG failure")
}
fn next_u64(&mut self) -> u64 {
self.0.try_next_u64().expect("RNG failure")
}
fn fill_bytes(&mut self, dest: &mut [u8]) {
self.0
.try_fill_bytes(dest)
.expect("RNG failure while filling bytes");
}
fn try_fill_bytes(&mut self, dest: &mut [u8]) -> Result<(), elliptic_curve::rand_core::Error> {
self.0.try_fill_bytes(dest).map_err(|_| compat_error())?;
Ok(())
}
}
impl<'a, R> elliptic_curve::rand_core::CryptoRng for CompatRng<'a, R> where R: TryCryptoRng {}
fn compat_error() -> elliptic_curve::rand_core::Error {
let code = NonZeroU32::new(elliptic_curve::rand_core::Error::CUSTOM_START)
.expect("CUSTOM_START must be non-zero");
elliptic_curve::rand_core::Error::from(code)
}
+6 -3
View File
@@ -18,7 +18,7 @@ use digest::core_api::BlockSizeUser;
use digest::{FixedOutput, HashMarker}; use digest::{FixedOutput, HashMarker};
use generic_array::typenum::{IsLess, IsLessOrEqual, Sum, 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::{TryCryptoRng, TryRngCore};
#[cfg(feature = "ristretto255")] #[cfg(feature = "ristretto255")]
pub use ristretto::Ristretto255; pub use ristretto::Ristretto255;
use subtle::{Choice, ConstantTimeEq}; use subtle::{Choice, ConstantTimeEq};
@@ -100,8 +100,11 @@ where
/// is not a valid point on the group or the identity element. /// is not a valid point on the group or the identity element.
fn deserialize_elem(element_bits: &[u8]) -> Result<Self::Elem>; fn deserialize_elem(element_bits: &[u8]) -> Result<Self::Elem>;
/// picks a scalar at random /// Picks a scalar at random.
fn random_scalar<R: RngCore + CryptoRng>(rng: &mut R) -> Self::Scalar; ///
/// # Errors
/// [`Error::Rng`](crate::Error::Rng) if the random number generator fails.
fn random_scalar<R: TryRngCore + TryCryptoRng>(rng: &mut R) -> Result<Self::Scalar>;
/// The multiplicative inverse of this scalar /// The multiplicative inverse of this scalar
fn invert_scalar(scalar: Self::Scalar) -> Self::Scalar; fn invert_scalar(scalar: Self::Scalar) -> Self::Scalar;
+5 -4
View File
@@ -15,7 +15,7 @@ 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;
use rand_core::{CryptoRng, RngCore}; use rand_core::{TryCryptoRng, TryRngCore};
use subtle::ConstantTimeEq; use subtle::ConstantTimeEq;
use super::Group; use super::Group;
@@ -94,13 +94,14 @@ impl Group for Ristretto255 {
.ok_or(Error::Deserialization) .ok_or(Error::Deserialization)
} }
fn random_scalar<R: RngCore + CryptoRng>(rng: &mut R) -> Self::Scalar { fn random_scalar<R: TryRngCore + TryCryptoRng>(rng: &mut R) -> Result<Self::Scalar> {
loop { loop {
let mut scalar_bytes = [0u8; 32]; let mut scalar_bytes = [0u8; 32];
rng.fill_bytes(&mut scalar_bytes); rng.try_fill_bytes(&mut scalar_bytes)
.map_err(|_| Error::Rng)?;
if let Ok(scalar) = Self::deserialize_scalar(&scalar_bytes) { if let Ok(scalar) = Self::deserialize_scalar(&scalar_bytes) {
break scalar; break Ok(scalar);
} }
} }
} }
+7 -6
View File
@@ -14,7 +14,7 @@ use derive_where::derive_where;
use digest::{Digest, Output}; use digest::{Digest, Output};
use generic_array::typenum::Unsigned; use generic_array::typenum::Unsigned;
use generic_array::GenericArray; use generic_array::GenericArray;
use rand_core::{CryptoRng, RngCore}; use rand_core::{TryCryptoRng, TryRngCore};
use crate::common::{ use crate::common::{
derive_key_internal, deterministic_blind_unchecked, hash_to_group, i2osp_2, derive_key_internal, deterministic_blind_unchecked, hash_to_group, i2osp_2,
@@ -73,11 +73,11 @@ impl<CS: CipherSuite> OprfClient<CS> {
/// ///
/// # Errors /// # Errors
/// [`Error::Input`] if the `input` is empty or longer then [`u16::MAX`]. /// [`Error::Input`] if the `input` is empty or longer then [`u16::MAX`].
pub fn blind<R: RngCore + CryptoRng>( pub fn blind<R: TryRngCore + TryCryptoRng>(
input: &[u8], input: &[u8],
blinding_factor_rng: &mut R, blinding_factor_rng: &mut R,
) -> Result<OprfClientBlindResult<CS>> { ) -> Result<OprfClientBlindResult<CS>> {
let blind = CS::Group::random_scalar(blinding_factor_rng); let blind = CS::Group::random_scalar(blinding_factor_rng)?;
Self::deterministic_blind_unchecked_inner(input, blind) Self::deterministic_blind_unchecked_inner(input, blind)
} }
@@ -146,9 +146,9 @@ impl<CS: CipherSuite> OprfServer<CS> {
/// ///
/// # Errors /// # Errors
/// [`Error::Protocol`] if the protocol fails and can't be completed. /// [`Error::Protocol`] if the protocol fails and can't be completed.
pub fn new<R: RngCore + CryptoRng>(rng: &mut R) -> Result<Self> { pub fn new<R: TryRngCore + TryCryptoRng>(rng: &mut R) -> Result<Self> {
let mut seed = GenericArray::<_, <CS::Group as Group>::ScalarLen>::default(); let mut seed = GenericArray::<_, <CS::Group as Group>::ScalarLen>::default();
rng.fill_bytes(&mut seed); rng.try_fill_bytes(&mut seed).map_err(|_| Error::Protocol)?;
Self::new_from_seed(&seed, &[]) Self::new_from_seed(&seed, &[])
} }
@@ -268,6 +268,7 @@ mod tests {
use core::ptr; use core::ptr;
use rand::rngs::OsRng; use rand::rngs::OsRng;
use rand::TryRngCore;
use super::*; use super::*;
use crate::common::{Dst, STR_HASH_TO_GROUP}; use crate::common::{Dst, STR_HASH_TO_GROUP};
@@ -304,7 +305,7 @@ mod tests {
fn base_inversion_unsalted<CS: CipherSuite>() { fn base_inversion_unsalted<CS: CipherSuite>() {
let mut rng = OsRng; let mut rng = OsRng;
let mut input = [0u8; 64]; let mut input = [0u8; 64];
rng.fill_bytes(&mut input); rng.try_fill_bytes(&mut input).unwrap();
let client_blind_result = OprfClient::<CS>::blind(&input, &mut rng).unwrap(); let client_blind_result = OprfClient::<CS>::blind(&input, &mut rng).unwrap();
let client_finalize_result = client_blind_result let client_finalize_result = client_blind_result
.state .state
+8 -8
View File
@@ -16,7 +16,7 @@ use derive_where::derive_where;
use digest::{Digest, Output, OutputSizeUser}; use digest::{Digest, Output, OutputSizeUser};
use generic_array::typenum::Unsigned; use generic_array::typenum::Unsigned;
use generic_array::{ArrayLength, GenericArray}; use generic_array::{ArrayLength, GenericArray};
use rand_core::{CryptoRng, RngCore}; use rand_core::{TryCryptoRng, TryRngCore};
use crate::common::{ use crate::common::{
derive_keypair, deterministic_blind_unchecked, generate_proof, hash_to_group, i2osp_2, derive_keypair, deterministic_blind_unchecked, generate_proof, hash_to_group, i2osp_2,
@@ -75,11 +75,11 @@ impl<CS: CipherSuite> PoprfClient<CS> {
/// ///
/// # Errors /// # Errors
/// [`Error::Input`] if the `input` is empty or longer than [`u16::MAX`]. /// [`Error::Input`] if the `input` is empty or longer than [`u16::MAX`].
pub fn blind<R: RngCore + CryptoRng>( pub fn blind<R: TryRngCore + TryCryptoRng>(
input: &[u8], input: &[u8],
blinding_factor_rng: &mut R, blinding_factor_rng: &mut R,
) -> Result<PoprfClientBlindResult<CS>> { ) -> Result<PoprfClientBlindResult<CS>> {
let blind = CS::Group::random_scalar(blinding_factor_rng); let blind = CS::Group::random_scalar(blinding_factor_rng)?;
Self::deterministic_blind_unchecked_inner(input, blind) Self::deterministic_blind_unchecked_inner(input, blind)
} }
@@ -189,9 +189,9 @@ impl<CS: CipherSuite> PoprfServer<CS> {
/// ///
/// # Errors /// # Errors
/// [`Error::Protocol`] if the protocol fails and can't be completed. /// [`Error::Protocol`] if the protocol fails and can't be completed.
pub fn new<R: RngCore + CryptoRng>(rng: &mut R) -> Result<Self> { pub fn new<R: TryRngCore + TryCryptoRng>(rng: &mut R) -> Result<Self> {
let mut seed = GenericArray::<_, <CS::Group as Group>::ScalarLen>::default(); let mut seed = GenericArray::<_, <CS::Group as Group>::ScalarLen>::default();
rng.fill_bytes(&mut seed); rng.try_fill_bytes(&mut seed).map_err(|_| Error::Protocol)?;
Self::new_from_seed(&seed, &[]) Self::new_from_seed(&seed, &[])
} }
@@ -235,7 +235,7 @@ impl<CS: CipherSuite> PoprfServer<CS> {
/// # Errors /// # Errors
/// - [`Error::Info`] if the `info` is longer than `u16::MAX`. /// - [`Error::Info`] if the `info` is longer than `u16::MAX`.
/// - [`Error::Protocol`] if the protocol fails and can't be completed. /// - [`Error::Protocol`] if the protocol fails and can't be completed.
pub fn blind_evaluate<R: RngCore + CryptoRng>( pub fn blind_evaluate<R: TryRngCore + TryCryptoRng>(
&self, &self,
rng: &mut R, rng: &mut R,
blinded_element: &BlindedElement<CS>, blinded_element: &BlindedElement<CS>,
@@ -273,7 +273,7 @@ impl<CS: CipherSuite> PoprfServer<CS> {
/// - [`Error::Info`] if the `info` is longer than `u16::MAX`. /// - [`Error::Info`] if the `info` is longer than `u16::MAX`.
/// - [`Error::Protocol`] if the protocol fails and can't be completed. /// - [`Error::Protocol`] if the protocol fails and can't be completed.
#[cfg(feature = "alloc")] #[cfg(feature = "alloc")]
pub fn batch_blind_evaluate<'a, R: RngCore + CryptoRng, IE>( pub fn batch_blind_evaluate<'a, R: TryRngCore + TryCryptoRng, IE>(
&self, &self,
rng: &mut R, rng: &mut R,
blinded_elements: &'a IE, blinded_elements: &'a IE,
@@ -346,7 +346,7 @@ impl<CS: CipherSuite> PoprfServer<CS> {
pub fn batch_blind_evaluate_finish< pub fn batch_blind_evaluate_finish<
'a, 'a,
'b, 'b,
R: RngCore + CryptoRng, R: TryRngCore + TryCryptoRng,
IB: Iterator<Item = &'a BlindedElement<CS>> + ExactSizeIterator, IB: Iterator<Item = &'a BlindedElement<CS>> + ExactSizeIterator,
IE, IE,
>( >(
+1 -7
View File
@@ -9,7 +9,7 @@
use alloc::vec::Vec; use alloc::vec::Vec;
use core::cmp::min; use core::cmp::min;
use rand_core::{CryptoRng, Error, RngCore}; use rand_core::{CryptoRng, RngCore};
/// A simple implementation of `RngCore` for testing purposes. /// A simple implementation of `RngCore` for testing purposes.
/// ///
@@ -54,12 +54,6 @@ impl RngCore for CycleRng {
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);
} }
#[inline]
fn try_fill_bytes(&mut self, dest: &mut [u8]) -> Result<(), Error> {
self.fill_bytes(dest);
Ok(())
}
} }
// This is meant for testing only // This is meant for testing only
+10 -10
View File
@@ -16,7 +16,7 @@ use derive_where::derive_where;
use digest::{Digest, Output}; use digest::{Digest, Output};
use generic_array::typenum::Unsigned; use generic_array::typenum::Unsigned;
use generic_array::GenericArray; use generic_array::GenericArray;
use rand_core::{CryptoRng, RngCore}; use rand_core::{TryCryptoRng, TryRngCore};
use crate::common::{ use crate::common::{
derive_keypair, deterministic_blind_unchecked, generate_proof, hash_to_group, i2osp_2, derive_keypair, deterministic_blind_unchecked, generate_proof, hash_to_group, i2osp_2,
@@ -75,11 +75,11 @@ impl<CS: CipherSuite> VoprfClient<CS> {
/// ///
/// # Errors /// # Errors
/// [`Error::Input`] if the `input` is empty or longer then [`u16::MAX`]. /// [`Error::Input`] if the `input` is empty or longer then [`u16::MAX`].
pub fn blind<R: RngCore + CryptoRng>( pub fn blind<R: TryRngCore + TryCryptoRng>(
input: &[u8], input: &[u8],
blinding_factor_rng: &mut R, blinding_factor_rng: &mut R,
) -> Result<VoprfClientBlindResult<CS>> { ) -> Result<VoprfClientBlindResult<CS>> {
let blind = CS::Group::random_scalar(blinding_factor_rng); let blind = CS::Group::random_scalar(blinding_factor_rng)?;
Self::deterministic_blind_unchecked_inner(input, blind) Self::deterministic_blind_unchecked_inner(input, blind)
} }
@@ -196,9 +196,9 @@ impl<CS: CipherSuite> VoprfServer<CS> {
/// ///
/// # Errors /// # Errors
/// [`Error::Protocol`] if the protocol fails and can't be completed. /// [`Error::Protocol`] if the protocol fails and can't be completed.
pub fn new<R: RngCore + CryptoRng>(rng: &mut R) -> Result<Self> { pub fn new<R: TryRngCore + TryCryptoRng>(rng: &mut R) -> Result<Self> {
let mut seed = GenericArray::<_, <CS::Group as Group>::ScalarLen>::default(); let mut seed = GenericArray::<_, <CS::Group as Group>::ScalarLen>::default();
rng.fill_bytes(&mut seed); rng.try_fill_bytes(&mut seed).map_err(|_| Error::Protocol)?;
// This can't fail as the hash output is type constrained. // This can't fail as the hash output is type constrained.
Self::new_from_seed(&seed, &[]) Self::new_from_seed(&seed, &[])
} }
@@ -238,7 +238,7 @@ impl<CS: CipherSuite> VoprfServer<CS> {
/// Computes the second step for the multiplicative blinding version of /// Computes the second step for the multiplicative blinding version of
/// DH-OPRF. This message is sent from the server (who holds the OPRF key) /// DH-OPRF. This message is sent from the server (who holds the OPRF key)
/// to the client. /// to the client.
pub fn blind_evaluate<R: RngCore + CryptoRng>( pub fn blind_evaluate<R: TryRngCore + TryCryptoRng>(
&self, &self,
rng: &mut R, rng: &mut R,
blinded_element: &BlindedElement<CS>, blinded_element: &BlindedElement<CS>,
@@ -271,7 +271,7 @@ impl<CS: CipherSuite> VoprfServer<CS> {
/// [`Error::Batch`] if the number of `blinded_elements` and /// [`Error::Batch`] if the number of `blinded_elements` and
/// `evaluation_elements` don't match or is longer then [`u16::MAX`] /// `evaluation_elements` don't match or is longer then [`u16::MAX`]
#[cfg(feature = "alloc")] #[cfg(feature = "alloc")]
pub fn batch_blind_evaluate<'a, R: RngCore + CryptoRng, I>( pub fn batch_blind_evaluate<'a, R: TryRngCore + TryCryptoRng, I>(
&self, &self,
rng: &mut R, rng: &mut R,
blinded_elements: &'a I, blinded_elements: &'a I,
@@ -322,7 +322,7 @@ impl<CS: CipherSuite> VoprfServer<CS> {
pub fn batch_blind_evaluate_finish< pub fn batch_blind_evaluate_finish<
'a, 'a,
'b, 'b,
R: RngCore + CryptoRng, R: TryRngCore + TryCryptoRng,
IB: Iterator<Item = &'a BlindedElement<CS>> + ExactSizeIterator, IB: Iterator<Item = &'a BlindedElement<CS>> + ExactSizeIterator,
IE, IE,
>( >(
@@ -599,7 +599,7 @@ mod tests {
let num_iterations = 10; let num_iterations = 10;
for _ in 0..num_iterations { for _ in 0..num_iterations {
let mut input = [0u8; 32]; let mut input = [0u8; 32];
rng.fill_bytes(&mut input); rng.try_fill_bytes(&mut input).unwrap();
let client_blind_result = VoprfClient::<CS>::blind(&input, &mut rng).unwrap(); let client_blind_result = VoprfClient::<CS>::blind(&input, &mut rng).unwrap();
inputs.push(input); inputs.push(input);
client_states.push(client_blind_result.state); client_states.push(client_blind_result.state);
@@ -643,7 +643,7 @@ mod tests {
let num_iterations = 10; let num_iterations = 10;
for _ in 0..num_iterations { for _ in 0..num_iterations {
let mut input = [0u8; 32]; let mut input = [0u8; 32];
rng.fill_bytes(&mut input); rng.try_fill_bytes(&mut input).unwrap();
let client_blind_result = VoprfClient::<CS>::blind(&input, &mut rng).unwrap(); let client_blind_result = VoprfClient::<CS>::blind(&input, &mut rng).unwrap();
inputs.push(input); inputs.push(input);
client_states.push(client_blind_result.state); client_states.push(client_blind_result.state);