Skip to content

Commit

Permalink
Add impl subtle::ConstantTimeEq for note::Nullifier
Browse files Browse the repository at this point in the history
  • Loading branch information
nuttycom committed Feb 24, 2024
1 parent 3d79ba4 commit ff7287e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ and this project adheres to Rust's notion of

## [Unreleased]

### Added
- `impl subtle::ConstantTimeEq for note::Nullifier`

## [0.7.0] - 2024-01-26
### Licensing
- The license for this crate is now "MIT OR Apache-2.0". The license
Expand Down
8 changes: 7 additions & 1 deletion src/note/nullifier.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use halo2_proofs::arithmetic::CurveExt;
use memuse::DynamicUsage;
use pasta_curves::pallas;
use rand::RngCore;
use subtle::CtOption;
use subtle::{CtOption, ConstantTimeEq};

use super::NoteCommitment;
use crate::{
Expand Down Expand Up @@ -62,6 +62,12 @@ impl Nullifier {
}
}

impl ConstantTimeEq for Nullifier {
fn ct_eq(&self, other: &Self) -> subtle::Choice {
self.0.ct_eq(&other.0)
}
}

/// Generators for property testing.
#[cfg(any(test, feature = "test-dependencies"))]
#[cfg_attr(docsrs, doc(cfg(feature = "test-dependencies")))]
Expand Down

0 comments on commit ff7287e

Please sign in to comment.