Files
voprf-vx/src/group/elliptic_curve.rs
T

134 lines
4.6 KiB
Rust
Raw Normal View History

// SPDX-License-Identifier: MIT OR Apache-2.0
// Copyright (c) VexaHub and contributors.
2023-05-22 23:04:39 -07:00
// Copyright (c) Meta Platforms, Inc. and affiliates.
2022-01-21 22:52:09 +01:00
use core::ops::{Add, Mul};
use digest::block_api::BlockSizeUser;
use digest::typenum::{IsLess, IsLessOrEqual, U256};
2023-02-08 09:18:04 +01:00
use digest::{FixedOutput, HashMarker};
2022-01-21 22:52:09 +01:00
use elliptic_curve::group::cofactor::CofactorGroup;
use elliptic_curve::sec1::{FromSec1Point, ModulusSize, ToSec1Point};
2022-01-21 22:52:09 +01:00
use elliptic_curve::{
2025-11-04 14:40:16 -05:00
AffinePoint, Field, FieldBytes, FieldBytesSize, Group as _, ProjectivePoint, PublicKey, Scalar,
SecretKey,
2022-01-21 22:52:09 +01:00
};
use hash2curve::{ExpandMsgXmd, GroupDigest, MapToCurve, hash_to_scalar};
use hybrid_array::typenum::{IsGreaterOrEqual, Prod, Sum, True, U2};
use hybrid_array::{Array, ArraySize};
use rand_core::TryCryptoRng;
2022-01-21 22:52:09 +01:00
use super::Group;
2022-04-01 21:18:32 +02:00
use crate::{Error, InternalError, Result};
2022-01-21 22:52:09 +01:00
2025-04-15 22:30:56 +02:00
type ElemLen<C> = <ScalarLen<C> as ModulusSize>::CompressedPointSize;
type ScalarLen<C> = FieldBytesSize<C>;
2022-01-21 22:52:09 +01:00
impl<C> Group for C
where
C: GroupDigest,
C::SecurityLevel: Mul<U2>,
C::SecurityLevel: ArraySize,
<C::SecurityLevel as Mul<U2>>::Output: ArraySize,
ProjectivePoint<Self>: CofactorGroup + ToSec1Point<Self>,
2025-04-15 22:30:56 +02:00
ScalarLen<Self>: ModulusSize,
ScalarLen<Self>: ArraySize,
ScalarLen<Self>: hybrid_array::typenum::NonZero,
Scalar<Self>: elliptic_curve::ops::Reduce<Array<u8, <C as MapToCurve>::Length>>,
AffinePoint<Self>: FromSec1Point<Self> + ToSec1Point<Self>,
2025-04-15 22:30:56 +02:00
// `VoprfClientLen`, `PoprfClientLen`, `VoprfServerLen`, `PoprfServerLen`
ScalarLen<Self>: Add<ElemLen<Self>>,
Sum<ScalarLen<Self>, ElemLen<Self>>: ArraySize,
2025-04-15 22:30:56 +02:00
// `ProofLen`
ScalarLen<Self>: Add<ScalarLen<Self>>,
Sum<ScalarLen<Self>, ScalarLen<Self>>: ArraySize,
ElemLen<Self>: ArraySize,
2022-01-21 22:52:09 +01:00
{
type Elem = ProjectivePoint<Self>;
2025-04-15 22:30:56 +02:00
type ElemLen = ElemLen<Self>;
2022-01-21 22:52:09 +01:00
type Scalar = Scalar<Self>;
2025-04-15 22:30:56 +02:00
type ScalarLen = ScalarLen<Self>;
2022-01-21 22:52:09 +01:00
type SecurityLevel = C::SecurityLevel;
2022-01-21 22:52:09 +01:00
// Implements the `hash_to_curve()` function from
2024-01-11 11:58:36 -08:00
// https://www.rfc-editor.org/rfc/rfc9380.html#section-3
fn hash_to_curve<H>(input: &[&[u8]], dst: &[&[u8]]) -> Result<Self::Elem, InternalError> {
Self::hash_from_bytes(input, dst).map_err(|_| InternalError::Input)
2022-01-21 22:52:09 +01:00
}
// Implements the `HashToScalar()` function
2023-02-08 09:18:04 +01:00
fn hash_to_scalar<H>(input: &[&[u8]], dst: &[&[u8]]) -> Result<Self::Scalar, InternalError>
2022-01-21 22:52:09 +01:00
where
2023-02-08 09:18:04 +01:00
H: BlockSizeUser + Default + FixedOutput + HashMarker,
H::OutputSize: IsLess<U256>
+ IsLessOrEqual<H::BlockSize, Output = True>
+ IsGreaterOrEqual<Prod<C::SecurityLevel, U2>, Output = True>,
2022-01-21 22:52:09 +01:00
{
hash_to_scalar::<C, ExpandMsgXmd<H>, <C as MapToCurve>::Length>(input, dst)
2022-01-25 05:55:02 +01:00
.map_err(|_| InternalError::Input)
2022-01-21 22:52:09 +01:00
}
fn base_elem() -> Self::Elem {
ProjectivePoint::<Self>::generator()
}
fn identity_elem() -> Self::Elem {
ProjectivePoint::<Self>::identity()
}
fn serialize_elem(elem: Self::Elem) -> Array<u8, Self::ElemLen> {
let bytes = elem.to_sec1_point(true);
2022-01-21 22:52:09 +01:00
let bytes = bytes.as_bytes();
let mut result = Array::default();
2022-01-21 22:52:09 +01:00
result[..bytes.len()].copy_from_slice(bytes);
result
}
2022-01-28 01:38:17 +01:00
fn deserialize_elem(element_bits: &[u8]) -> Result<Self::Elem> {
2022-01-21 22:52:09 +01:00
PublicKey::<Self>::from_sec1_bytes(element_bits)
.map(|public_key| public_key.to_projective())
2022-01-25 05:55:02 +01:00
.map_err(|_| Error::Deserialization)
2022-01-21 22:52:09 +01:00
}
fn random_scalar<R: TryCryptoRng>(rng: &mut R) -> Result<Self::Scalar> {
loop {
let mut bytes = FieldBytes::<Self>::default();
rng.try_fill_bytes(&mut bytes).map_err(|_| Error::Rng)?;
if let Ok(key) = SecretKey::<Self>::from_slice(&bytes) {
return Ok(*key.to_nonzero_scalar());
}
}
2022-01-21 22:52:09 +01:00
}
fn invert_scalar(scalar: Self::Scalar) -> Self::Scalar {
Option::from(scalar.invert()).unwrap()
}
2022-01-28 01:38:17 +01:00
fn is_zero_scalar(scalar: Self::Scalar) -> subtle::Choice {
scalar.is_zero()
}
2022-01-21 22:52:09 +01:00
#[cfg(test)]
fn zero_scalar() -> Self::Scalar {
2023-02-08 09:18:04 +01:00
Scalar::<Self>::ZERO
2022-01-21 22:52:09 +01:00
}
fn serialize_scalar(scalar: Self::Scalar) -> Array<u8, Self::ScalarLen> {
2025-11-04 14:40:16 -05:00
let bytes: FieldBytes<Self> = scalar.into();
let mut result = Array::<u8, Self::ScalarLen>::default();
2025-11-04 14:40:16 -05:00
result.as_mut_slice().copy_from_slice(bytes.as_ref());
result
2022-01-21 22:52:09 +01:00
}
2022-01-28 01:38:17 +01:00
fn deserialize_scalar(scalar_bits: &[u8]) -> Result<Self::Scalar> {
2023-02-08 09:18:04 +01:00
SecretKey::<Self>::from_slice(scalar_bits)
2022-01-21 22:52:09 +01:00
.map(|secret_key| *secret_key.to_nonzero_scalar())
2022-01-25 05:55:02 +01:00
.map_err(|_| Error::Deserialization)
2022-01-21 22:52:09 +01:00
}
}