Skip to content

Commit

Permalink
add constants file
Browse files Browse the repository at this point in the history
  • Loading branch information
redshiftzero committed Jan 29, 2024
1 parent 3b0bc8a commit 7fd8963
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/smol_curve/constants.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
use crate::Fq;

pub const ZETA: Fq = Fq::from_montgomery_limbs_64([
5947794125541564500,
11292571455564096885,
11814268415718120036,
155746270000486182,
]);

pub const ZETA_TO_TRACE: Fq = Fq::from_montgomery_limbs_64([

Check warning on line 10 in src/smol_curve/constants.rs

View workflow job for this annotation

GitHub Actions / Check

constant `ZETA_TO_TRACE` is never used

Check warning on line 10 in src/smol_curve/constants.rs

View workflow job for this annotation

GitHub Actions / build without alloc

constant `ZETA_TO_TRACE` is never used

Check warning on line 10 in src/smol_curve/constants.rs

View workflow job for this annotation

GitHub Actions / no_std compatibility check

constant `ZETA_TO_TRACE` is never used

Check warning on line 10 in src/smol_curve/constants.rs

View workflow job for this annotation

GitHub Actions / no_std compatibility check

constant `ZETA_TO_TRACE` is never used

Check warning on line 10 in src/smol_curve/constants.rs

View workflow job for this annotation

GitHub Actions / no_std compatibility check

constant `ZETA_TO_TRACE` is never used

Check warning on line 10 in src/smol_curve/constants.rs

View workflow job for this annotation

GitHub Actions / Test Suite (r1cs)

constant `ZETA_TO_TRACE` is never used

Check warning on line 10 in src/smol_curve/constants.rs

View workflow job for this annotation

GitHub Actions / Test Suite (r1cs,u32_backend)

constant `ZETA_TO_TRACE` is never used
6282505393754313363,
14378628227555923904,
9804873068900332207,
302335131180501866,
]);

0 comments on commit 7fd8963

Please sign in to comment.