-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3b0bc8a
commit 7fd8963
Showing
1 changed file
with
15 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
|
||
6282505393754313363, | ||
14378628227555923904, | ||
9804873068900332207, | ||
302335131180501866, | ||
]); |