anemoi/pallas/anemoi_2_1/
round_constants.rs

1//! Additive round constants implementation for Anemoi
2
3use super::Felt;
4use super::MontFp;
5use super::NUM_HASH_ROUNDS;
6
7/// Additive round constants C for Anemoi.
8pub(crate) const C: [Felt; NUM_HASH_ROUNDS] = [
9    MontFp!("37"),
10    MontFp!("26281348989966017259792317449778718732316622220680883111323180762681136763865"),
11    MontFp!("18591254890380010761864840202388680562911662159094449241596182239929363100704"),
12    MontFp!("13495862858106627515637537555868576984930084039254289255166693115500631348485"),
13    MontFp!("19144755574234386166181567106217473191690122379652580194612919592790889081733"),
14    MontFp!("18811779461046155712735761687068915290737647863622609130367600608448330751854"),
15    MontFp!("5575670157869159198176715286459175971250617976440186444249245623981112838723"),
16    MontFp!("11204345192131346974251503060634424531930847456508603191046487769612226356466"),
17    MontFp!("11046668350288503579760336005886659422438139074976054678139072669198820125523"),
18    MontFp!("15654115810939573121853007233706921297705448878035521255163789541040142932005"),
19    MontFp!("14729491161049187479462431166560060202595436538882668538070096769412375786491"),
20    MontFp!("1894942756697365943018533093692753350687005044094733507802691220941794652376"),
21    MontFp!("23217710365823183162722556433077700924032709249614405538004930330632973665678"),
22    MontFp!("24379936598524113994898316699448364156829680691043617111736361974067258065460"),
23    MontFp!("19211700168710939236229343580886588570169206861265675977076415536301510004649"),
24    MontFp!("25674868813995619092099838637124468193018796652924736435946436694884765664345"),
25    MontFp!("23931290737672145058622086982351371837640989843767785926072297852128053208265"),
26    MontFp!("26013584737708708828963817673400302286925453869317315280861073354464028382200"),
27    MontFp!("288285550839047227269408140015659144692862265037489275524820427165666506500"),
28    MontFp!("2626246651954954484557781383627397072779096733752606150233858102392727718831"),
29    MontFp!("17471285510855164131553035530785387529720212741649226019936966139529965704642"),
30];
31
32/// Additive round constants D for Anemoi.
33pub(crate) const D: [Felt; NUM_HASH_ROUNDS] = [
34    MontFp!("11579208923731619542357098500868790785345222592776624286381870705739987052172"),
35    MontFp!("8635109805850431260933782412348561577056610564420134064677479474386147757892"),
36    MontFp!("2749966645161231950390217292435212715018890444216920273319663546391624368785"),
37    MontFp!("8152525470927511811460280715669976866076469366461319755948806312723871861967"),
38    MontFp!("2281147808231124126985934789906642042143342527732374999779009198498715959429"),
39    MontFp!("24712356212267165723325706717751563168766505387684098625082469021761409591630"),
40    MontFp!("23373436511013129058408904325542266752633905591121501445790926066372800007225"),
41    MontFp!("7061399116127706886645267243015866814157489880056456561505481230928985785025"),
42    MontFp!("16654825040461262708564306745423907205257839354433432946258876128555503589023"),
43    MontFp!("7638319624558274114440431817412418459488709285285150989631734929845155696690"),
44    MontFp!("27779010638119157733984803090082167820861169560545512543308120408218951291451"),
45    MontFp!("8954668161794395147054048526648808307389650489500242648922879333659584736094"),
46    MontFp!("4226549114477105189589794277262044618809743614843938435689526786032725654278"),
47    MontFp!("8563707063890154306527618106092398081982428922263062428714943840082583850761"),
48    MontFp!("20238008632618121213250003558695118587165436485374974808051625595020415178247"),
49    MontFp!("2135731326318950912551866766811281830638025572484710572853224022378726098941"),
50    MontFp!("27707784960920811734373790541256684053946545937411575481750996767659601417684"),
51    MontFp!("17113872718872607193987534283907037929598528912673341504227280394056922847743"),
52    MontFp!("15931345665664408407577824404248192388592624951899177932906121936059176978704"),
53    MontFp!("6277133503646682553354164881156778317222161289643913470805587087678191635646"),
54    MontFp!("301871011141391112132426993486437362199728497063848532983130626981366703594"),
55];