starkshield 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +101 -0
- package/bin/circom +0 -0
- package/bin/cli.js +36 -0
- package/bin/index.js +13 -0
- package/circomlib/.vscode/launch.json +63 -0
- package/circomlib/README.md +18 -0
- package/circomlib/circuits/README.md +830 -0
- package/circomlib/circuits/aliascheck.circom +33 -0
- package/circomlib/circuits/babyjub.circom +107 -0
- package/circomlib/circuits/binsub.circom +74 -0
- package/circomlib/circuits/binsum.circom +101 -0
- package/circomlib/circuits/bitify.circom +106 -0
- package/circomlib/circuits/comparators.circom +141 -0
- package/circomlib/circuits/compconstant.circom +74 -0
- package/circomlib/circuits/eddsa.circom +139 -0
- package/circomlib/circuits/eddsamimc.circom +124 -0
- package/circomlib/circuits/eddsamimcsponge.circom +124 -0
- package/circomlib/circuits/eddsaposeidon.circom +123 -0
- package/circomlib/circuits/escalarmul.circom +166 -0
- package/circomlib/circuits/escalarmulany.circom +197 -0
- package/circomlib/circuits/escalarmulfix.circom +299 -0
- package/circomlib/circuits/escalarmulw4table.circom +52 -0
- package/circomlib/circuits/gates.circom +96 -0
- package/circomlib/circuits/mimc.circom +156 -0
- package/circomlib/circuits/mimcsponge.circom +293 -0
- package/circomlib/circuits/montgomery.circom +142 -0
- package/circomlib/circuits/multiplexer.circom +115 -0
- package/circomlib/circuits/mux1.circom +48 -0
- package/circomlib/circuits/mux2.circom +63 -0
- package/circomlib/circuits/mux3.circom +75 -0
- package/circomlib/circuits/mux4.circom +119 -0
- package/circomlib/circuits/pedersen.circom +257 -0
- package/circomlib/circuits/pedersen_old.circom +68 -0
- package/circomlib/circuits/pointbits.circom +164 -0
- package/circomlib/circuits/poseidon.circom +208 -0
- package/circomlib/circuits/poseidon_constants.circom +24959 -0
- package/circomlib/circuits/poseidon_constants_old.circom +252 -0
- package/circomlib/circuits/poseidon_old.circom +97 -0
- package/circomlib/circuits/sha256/ch.circom +47 -0
- package/circomlib/circuits/sha256/constants.circom +53 -0
- package/circomlib/circuits/sha256/main.circom +35 -0
- package/circomlib/circuits/sha256/maj.circom +45 -0
- package/circomlib/circuits/sha256/rotate.circom +28 -0
- package/circomlib/circuits/sha256/sha256.circom +81 -0
- package/circomlib/circuits/sha256/sha256_2.circom +91 -0
- package/circomlib/circuits/sha256/sha256compression.circom +166 -0
- package/circomlib/circuits/sha256/sha256compression_function.circom +112 -0
- package/circomlib/circuits/sha256/shift.circom +33 -0
- package/circomlib/circuits/sha256/sigma.circom +77 -0
- package/circomlib/circuits/sha256/sigmaplus.circom +50 -0
- package/circomlib/circuits/sha256/t1.circom +58 -0
- package/circomlib/circuits/sha256/t2.circom +51 -0
- package/circomlib/circuits/sha256/xor3.circom +45 -0
- package/circomlib/circuits/sign.circom +36 -0
- package/circomlib/circuits/smt/smthash_mimc.circom +58 -0
- package/circomlib/circuits/smt/smthash_poseidon.circom +57 -0
- package/circomlib/circuits/smt/smtlevins.circom +103 -0
- package/circomlib/circuits/smt/smtprocessor.circom +261 -0
- package/circomlib/circuits/smt/smtprocessorlevel.circom +95 -0
- package/circomlib/circuits/smt/smtprocessorsm.circom +165 -0
- package/circomlib/circuits/smt/smtverifier.circom +138 -0
- package/circomlib/circuits/smt/smtverifierlevel.circom +71 -0
- package/circomlib/circuits/smt/smtverifiersm.circom +106 -0
- package/circomlib/circuits/switcher.circom +42 -0
- package/circomlib/doc/root_transfer.monopic +0 -0
- package/circomlib/doc/smt_diagram_0.monopic +0 -0
- package/circomlib/doc/smt_diagram_1.monopic +0 -0
- package/circomlib/doc/smt_hash.monopic +0 -0
- package/circomlib/doc/smt_levins.monopic +0 -0
- package/circomlib/doc/smt_sm.monopic +0 -0
- package/circomlib/doc/smt_verifier_sm.monopic +0 -0
- package/circomlib/doc/voting.monopic +0 -0
- package/circomlib/doc/window.monopic +0 -0
- package/circomlib/doc/window_chain.monopic +0 -0
- package/circomlib/index.js +2 -0
- package/circomlib/package.json +33 -0
- package/circomlib/test/aliascheck.js +77 -0
- package/circomlib/test/babyjub.js +118 -0
- package/circomlib/test/binsub.js +52 -0
- package/circomlib/test/binsum.js +38 -0
- package/circomlib/test/circuits/aliascheck_test.circom +4 -0
- package/circomlib/test/circuits/babyadd_tester.circom +4 -0
- package/circomlib/test/circuits/babycheck_test.circom +4 -0
- package/circomlib/test/circuits/babypbk_test.circom +4 -0
- package/circomlib/test/circuits/binsub_test.circom +33 -0
- package/circomlib/test/circuits/constants_test.circom +20 -0
- package/circomlib/test/circuits/eddsa_test.circom +5 -0
- package/circomlib/test/circuits/eddsamimc_test.circom +5 -0
- package/circomlib/test/circuits/eddsaposeidon_test.circom +5 -0
- package/circomlib/test/circuits/edwards2montgomery.circom +5 -0
- package/circomlib/test/circuits/escalarmul_min_test.circom +27 -0
- package/circomlib/test/circuits/escalarmul_test.circom +33 -0
- package/circomlib/test/circuits/escalarmul_test_min.circom +28 -0
- package/circomlib/test/circuits/escalarmulany_test.circom +30 -0
- package/circomlib/test/circuits/escalarmulfix_test.circom +31 -0
- package/circomlib/test/circuits/escalarmulw4table.circom +20 -0
- package/circomlib/test/circuits/escalarmulw4table_test.circom +19 -0
- package/circomlib/test/circuits/escalarmulw4table_test3.circom +19 -0
- package/circomlib/test/circuits/greatereqthan.circom +5 -0
- package/circomlib/test/circuits/greaterthan.circom +5 -0
- package/circomlib/test/circuits/isequal.circom +5 -0
- package/circomlib/test/circuits/iszero.circom +5 -0
- package/circomlib/test/circuits/lesseqthan.circom +5 -0
- package/circomlib/test/circuits/lessthan.circom +5 -0
- package/circomlib/test/circuits/mimc_sponge_hash_test.circom +5 -0
- package/circomlib/test/circuits/mimc_sponge_test.circom +5 -0
- package/circomlib/test/circuits/mimc_test.circom +5 -0
- package/circomlib/test/circuits/montgomery2edwards.circom +5 -0
- package/circomlib/test/circuits/montgomeryadd.circom +5 -0
- package/circomlib/test/circuits/montgomerydouble.circom +5 -0
- package/circomlib/test/circuits/mux1_1.circom +33 -0
- package/circomlib/test/circuits/mux2_1.circom +37 -0
- package/circomlib/test/circuits/mux3_1.circom +41 -0
- package/circomlib/test/circuits/mux4_1.circom +56 -0
- package/circomlib/test/circuits/pedersen2_test.circom +34 -0
- package/circomlib/test/circuits/pedersen_test.circom +31 -0
- package/circomlib/test/circuits/pointbits_loopback.circom +25 -0
- package/circomlib/test/circuits/poseidon3_test.circom +5 -0
- package/circomlib/test/circuits/poseidon6_test.circom +5 -0
- package/circomlib/test/circuits/poseidonex_test.circom +5 -0
- package/circomlib/test/circuits/sha256_2_test.circom +17 -0
- package/circomlib/test/circuits/sha256_test448.circom +5 -0
- package/circomlib/test/circuits/sha256_test512.circom +5 -0
- package/circomlib/test/circuits/sign_test.circom +5 -0
- package/circomlib/test/circuits/smtprocessor10_test.circom +5 -0
- package/circomlib/test/circuits/smtverifier10_test.circom +5 -0
- package/circomlib/test/circuits/sum_test.circom +33 -0
- package/circomlib/test/comparators.js +187 -0
- package/circomlib/test/eddsa.js +75 -0
- package/circomlib/test/eddsamimc.js +102 -0
- package/circomlib/test/eddsaposeidon.js +103 -0
- package/circomlib/test/escalarmul.js +121 -0
- package/circomlib/test/escalarmulany.js +51 -0
- package/circomlib/test/escalarmulfix.js +95 -0
- package/circomlib/test/helpers/printsignal.js +22 -0
- package/circomlib/test/helpers/sha256.js +178 -0
- package/circomlib/test/mimccircuit.js +27 -0
- package/circomlib/test/mimcspongecircuit.js +47 -0
- package/circomlib/test/montgomery.js +101 -0
- package/circomlib/test/multiplexer.js +101 -0
- package/circomlib/test/pedersen.js +83 -0
- package/circomlib/test/pedersen2.js +56 -0
- package/circomlib/test/point2bits.js +30 -0
- package/circomlib/test/poseidoncircuit.js +80 -0
- package/circomlib/test/sha256.js +118 -0
- package/circomlib/test/sign.js +82 -0
- package/circomlib/test/smtprocessor.js +219 -0
- package/circomlib/test/smtverifier.js +141 -0
- package/lib/compile.js +82 -0
- package/lib/deploy.js +391 -0
- package/lib/test.js +47 -0
- package/lib/verify.js +153 -0
- package/package.json +43 -0
- package/pot12_0000.ptau +0 -0
- package/pot12_0001.ptau +0 -0
- package/ptau/pot12_final.ptau +0 -0
|
@@ -0,0 +1,156 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Copyright 2018 0KIMS association.
|
|
3
|
+
|
|
4
|
+
This file is part of circom (Zero Knowledge Circuit Compiler).
|
|
5
|
+
|
|
6
|
+
circom is a free software: you can redistribute it and/or modify it
|
|
7
|
+
under the terms of the GNU General Public License as published by
|
|
8
|
+
the Free Software Foundation, either version 3 of the License, or
|
|
9
|
+
(at your option) any later version.
|
|
10
|
+
|
|
11
|
+
circom is distributed in the hope that it will be useful, but WITHOUT
|
|
12
|
+
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
13
|
+
or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
|
|
14
|
+
License for more details.
|
|
15
|
+
|
|
16
|
+
You should have received a copy of the GNU General Public License
|
|
17
|
+
along with circom. If not, see <https://www.gnu.org/licenses/>.
|
|
18
|
+
*/
|
|
19
|
+
pragma circom 2.0.0;
|
|
20
|
+
|
|
21
|
+
template MiMC7(nrounds) {
|
|
22
|
+
signal input x_in;
|
|
23
|
+
signal input k;
|
|
24
|
+
signal output out;
|
|
25
|
+
|
|
26
|
+
var c[91] = [
|
|
27
|
+
0,
|
|
28
|
+
20888961410941983456478427210666206549300505294776164667214940546594746570981,
|
|
29
|
+
15265126113435022738560151911929040668591755459209400716467504685752745317193,
|
|
30
|
+
8334177627492981984476504167502758309043212251641796197711684499645635709656,
|
|
31
|
+
1374324219480165500871639364801692115397519265181803854177629327624133579404,
|
|
32
|
+
11442588683664344394633565859260176446561886575962616332903193988751292992472,
|
|
33
|
+
2558901189096558760448896669327086721003508630712968559048179091037845349145,
|
|
34
|
+
11189978595292752354820141775598510151189959177917284797737745690127318076389,
|
|
35
|
+
3262966573163560839685415914157855077211340576201936620532175028036746741754,
|
|
36
|
+
17029914891543225301403832095880481731551830725367286980611178737703889171730,
|
|
37
|
+
4614037031668406927330683909387957156531244689520944789503628527855167665518,
|
|
38
|
+
19647356996769918391113967168615123299113119185942498194367262335168397100658,
|
|
39
|
+
5040699236106090655289931820723926657076483236860546282406111821875672148900,
|
|
40
|
+
2632385916954580941368956176626336146806721642583847728103570779270161510514,
|
|
41
|
+
17691411851977575435597871505860208507285462834710151833948561098560743654671,
|
|
42
|
+
11482807709115676646560379017491661435505951727793345550942389701970904563183,
|
|
43
|
+
8360838254132998143349158726141014535383109403565779450210746881879715734773,
|
|
44
|
+
12663821244032248511491386323242575231591777785787269938928497649288048289525,
|
|
45
|
+
3067001377342968891237590775929219083706800062321980129409398033259904188058,
|
|
46
|
+
8536471869378957766675292398190944925664113548202769136103887479787957959589,
|
|
47
|
+
19825444354178182240559170937204690272111734703605805530888940813160705385792,
|
|
48
|
+
16703465144013840124940690347975638755097486902749048533167980887413919317592,
|
|
49
|
+
13061236261277650370863439564453267964462486225679643020432589226741411380501,
|
|
50
|
+
10864774797625152707517901967943775867717907803542223029967000416969007792571,
|
|
51
|
+
10035653564014594269791753415727486340557376923045841607746250017541686319774,
|
|
52
|
+
3446968588058668564420958894889124905706353937375068998436129414772610003289,
|
|
53
|
+
4653317306466493184743870159523234588955994456998076243468148492375236846006,
|
|
54
|
+
8486711143589723036499933521576871883500223198263343024003617825616410932026,
|
|
55
|
+
250710584458582618659378487568129931785810765264752039738223488321597070280,
|
|
56
|
+
2104159799604932521291371026105311735948154964200596636974609406977292675173,
|
|
57
|
+
16313562605837709339799839901240652934758303521543693857533755376563489378839,
|
|
58
|
+
6032365105133504724925793806318578936233045029919447519826248813478479197288,
|
|
59
|
+
14025118133847866722315446277964222215118620050302054655768867040006542798474,
|
|
60
|
+
7400123822125662712777833064081316757896757785777291653271747396958201309118,
|
|
61
|
+
1744432620323851751204287974553233986555641872755053103823939564833813704825,
|
|
62
|
+
8316378125659383262515151597439205374263247719876250938893842106722210729522,
|
|
63
|
+
6739722627047123650704294650168547689199576889424317598327664349670094847386,
|
|
64
|
+
21211457866117465531949733809706514799713333930924902519246949506964470524162,
|
|
65
|
+
13718112532745211817410303291774369209520657938741992779396229864894885156527,
|
|
66
|
+
5264534817993325015357427094323255342713527811596856940387954546330728068658,
|
|
67
|
+
18884137497114307927425084003812022333609937761793387700010402412840002189451,
|
|
68
|
+
5148596049900083984813839872929010525572543381981952060869301611018636120248,
|
|
69
|
+
19799686398774806587970184652860783461860993790013219899147141137827718662674,
|
|
70
|
+
19240878651604412704364448729659032944342952609050243268894572835672205984837,
|
|
71
|
+
10546185249390392695582524554167530669949955276893453512788278945742408153192,
|
|
72
|
+
5507959600969845538113649209272736011390582494851145043668969080335346810411,
|
|
73
|
+
18177751737739153338153217698774510185696788019377850245260475034576050820091,
|
|
74
|
+
19603444733183990109492724100282114612026332366576932662794133334264283907557,
|
|
75
|
+
10548274686824425401349248282213580046351514091431715597441736281987273193140,
|
|
76
|
+
1823201861560942974198127384034483127920205835821334101215923769688644479957,
|
|
77
|
+
11867589662193422187545516240823411225342068709600734253659804646934346124945,
|
|
78
|
+
18718569356736340558616379408444812528964066420519677106145092918482774343613,
|
|
79
|
+
10530777752259630125564678480897857853807637120039176813174150229243735996839,
|
|
80
|
+
20486583726592018813337145844457018474256372770211860618687961310422228379031,
|
|
81
|
+
12690713110714036569415168795200156516217175005650145422920562694422306200486,
|
|
82
|
+
17386427286863519095301372413760745749282643730629659997153085139065756667205,
|
|
83
|
+
2216432659854733047132347621569505613620980842043977268828076165669557467682,
|
|
84
|
+
6309765381643925252238633914530877025934201680691496500372265330505506717193,
|
|
85
|
+
20806323192073945401862788605803131761175139076694468214027227878952047793390,
|
|
86
|
+
4037040458505567977365391535756875199663510397600316887746139396052445718861,
|
|
87
|
+
19948974083684238245321361840704327952464170097132407924861169241740046562673,
|
|
88
|
+
845322671528508199439318170916419179535949348988022948153107378280175750024,
|
|
89
|
+
16222384601744433420585982239113457177459602187868460608565289920306145389382,
|
|
90
|
+
10232118865851112229330353999139005145127746617219324244541194256766741433339,
|
|
91
|
+
6699067738555349409504843460654299019000594109597429103342076743347235369120,
|
|
92
|
+
6220784880752427143725783746407285094967584864656399181815603544365010379208,
|
|
93
|
+
6129250029437675212264306655559561251995722990149771051304736001195288083309,
|
|
94
|
+
10773245783118750721454994239248013870822765715268323522295722350908043393604,
|
|
95
|
+
4490242021765793917495398271905043433053432245571325177153467194570741607167,
|
|
96
|
+
19596995117319480189066041930051006586888908165330319666010398892494684778526,
|
|
97
|
+
837850695495734270707668553360118467905109360511302468085569220634750561083,
|
|
98
|
+
11803922811376367215191737026157445294481406304781326649717082177394185903907,
|
|
99
|
+
10201298324909697255105265958780781450978049256931478989759448189112393506592,
|
|
100
|
+
13564695482314888817576351063608519127702411536552857463682060761575100923924,
|
|
101
|
+
9262808208636973454201420823766139682381973240743541030659775288508921362724,
|
|
102
|
+
173271062536305557219323722062711383294158572562695717740068656098441040230,
|
|
103
|
+
18120430890549410286417591505529104700901943324772175772035648111937818237369,
|
|
104
|
+
20484495168135072493552514219686101965206843697794133766912991150184337935627,
|
|
105
|
+
19155651295705203459475805213866664350848604323501251939850063308319753686505,
|
|
106
|
+
11971299749478202793661982361798418342615500543489781306376058267926437157297,
|
|
107
|
+
18285310723116790056148596536349375622245669010373674803854111592441823052978,
|
|
108
|
+
7069216248902547653615508023941692395371990416048967468982099270925308100727,
|
|
109
|
+
6465151453746412132599596984628739550147379072443683076388208843341824127379,
|
|
110
|
+
16143532858389170960690347742477978826830511669766530042104134302796355145785,
|
|
111
|
+
19362583304414853660976404410208489566967618125972377176980367224623492419647,
|
|
112
|
+
1702213613534733786921602839210290505213503664731919006932367875629005980493,
|
|
113
|
+
10781825404476535814285389902565833897646945212027592373510689209734812292327,
|
|
114
|
+
4212716923652881254737947578600828255798948993302968210248673545442808456151,
|
|
115
|
+
7594017890037021425366623750593200398174488805473151513558919864633711506220,
|
|
116
|
+
18979889247746272055963929241596362599320706910852082477600815822482192194401,
|
|
117
|
+
13602139229813231349386885113156901793661719180900395818909719758150455500533
|
|
118
|
+
];
|
|
119
|
+
|
|
120
|
+
var t;
|
|
121
|
+
signal t2[nrounds];
|
|
122
|
+
signal t4[nrounds];
|
|
123
|
+
signal t6[nrounds];
|
|
124
|
+
signal t7[nrounds-1];
|
|
125
|
+
|
|
126
|
+
for (var i=0; i<nrounds; i++) {
|
|
127
|
+
t = (i==0) ? k+x_in : k + t7[i-1] + c[i];
|
|
128
|
+
t2[i] <== t*t;
|
|
129
|
+
t4[i] <== t2[i]*t2[i];
|
|
130
|
+
t6[i] <== t4[i]*t2[i];
|
|
131
|
+
if (i<nrounds-1) {
|
|
132
|
+
t7[i] <== t6[i]*t;
|
|
133
|
+
} else {
|
|
134
|
+
out <== t6[i]*t + k;
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
template MultiMiMC7(nInputs, nRounds) {
|
|
140
|
+
signal input in[nInputs];
|
|
141
|
+
signal input k;
|
|
142
|
+
signal output out;
|
|
143
|
+
signal r[nInputs +1];
|
|
144
|
+
|
|
145
|
+
component mims[nInputs];
|
|
146
|
+
|
|
147
|
+
r[0] <== k;
|
|
148
|
+
for (var i=0; i<nInputs; i++) {
|
|
149
|
+
mims[i] = MiMC7(nRounds);
|
|
150
|
+
mims[i].x_in <== in[i];
|
|
151
|
+
mims[i].k <== r[i];
|
|
152
|
+
r[i+1] <== r[i] + in[i] + mims[i].out;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
out <== r[nInputs];
|
|
156
|
+
}
|
|
@@ -0,0 +1,293 @@
|
|
|
1
|
+
pragma circom 2.0.0;
|
|
2
|
+
|
|
3
|
+
// implements MiMC-2n/n as hash using a sponge construction.
|
|
4
|
+
// log_5(21888242871839275222246405745257275088548364400416034343698204186575808495617) ~= 110
|
|
5
|
+
// => nRounds should be 220
|
|
6
|
+
template MiMCSponge(nInputs, nRounds, nOutputs) {
|
|
7
|
+
signal input ins[nInputs];
|
|
8
|
+
signal input k;
|
|
9
|
+
signal output outs[nOutputs];
|
|
10
|
+
|
|
11
|
+
var i;
|
|
12
|
+
|
|
13
|
+
// S = R||C
|
|
14
|
+
component S[nInputs + nOutputs - 1];
|
|
15
|
+
|
|
16
|
+
for (i = 0; i < nInputs; i++) {
|
|
17
|
+
S[i] = MiMCFeistel(nRounds);
|
|
18
|
+
S[i].k <== k;
|
|
19
|
+
if (i == 0) {
|
|
20
|
+
S[i].xL_in <== ins[0];
|
|
21
|
+
S[i].xR_in <== 0;
|
|
22
|
+
} else {
|
|
23
|
+
S[i].xL_in <== S[i-1].xL_out + ins[i];
|
|
24
|
+
S[i].xR_in <== S[i-1].xR_out;
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
outs[0] <== S[nInputs - 1].xL_out;
|
|
29
|
+
|
|
30
|
+
for (i = 0; i < nOutputs - 1; i++) {
|
|
31
|
+
S[nInputs + i] = MiMCFeistel(nRounds);
|
|
32
|
+
S[nInputs + i].k <== k;
|
|
33
|
+
S[nInputs + i].xL_in <== S[nInputs + i - 1].xL_out;
|
|
34
|
+
S[nInputs + i].xR_in <== S[nInputs + i - 1].xR_out;
|
|
35
|
+
outs[i + 1] <== S[nInputs + i].xL_out;
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
template MiMCFeistel(nrounds) {
|
|
40
|
+
signal input xL_in;
|
|
41
|
+
signal input xR_in;
|
|
42
|
+
signal input k;
|
|
43
|
+
signal output xL_out;
|
|
44
|
+
signal output xR_out;
|
|
45
|
+
|
|
46
|
+
// doesn't contain the first and last round constants, which are always zero
|
|
47
|
+
var c_partial[218] = [
|
|
48
|
+
7120861356467848435263064379192047478074060781135320967663101236819528304084,
|
|
49
|
+
5024705281721889198577876690145313457398658950011302225525409148828000436681,
|
|
50
|
+
17980351014018068290387269214713820287804403312720763401943303895585469787384,
|
|
51
|
+
19886576439381707240399940949310933992335779767309383709787331470398675714258,
|
|
52
|
+
1213715278223786725806155661738676903520350859678319590331207960381534602599,
|
|
53
|
+
18162138253399958831050545255414688239130588254891200470934232514682584734511,
|
|
54
|
+
7667462281466170157858259197976388676420847047604921256361474169980037581876,
|
|
55
|
+
7207551498477838452286210989212982851118089401128156132319807392460388436957,
|
|
56
|
+
9864183311657946807255900203841777810810224615118629957816193727554621093838,
|
|
57
|
+
4798196928559910300796064665904583125427459076060519468052008159779219347957,
|
|
58
|
+
17387238494588145257484818061490088963673275521250153686214197573695921400950,
|
|
59
|
+
10005334761930299057035055370088813230849810566234116771751925093634136574742,
|
|
60
|
+
11897542014760736209670863723231849628230383119798486487899539017466261308762,
|
|
61
|
+
16771780563523793011283273687253985566177232886900511371656074413362142152543,
|
|
62
|
+
749264854018824809464168489785113337925400687349357088413132714480582918506,
|
|
63
|
+
3683645737503705042628598550438395339383572464204988015434959428676652575331,
|
|
64
|
+
7556750851783822914673316211129907782679509728346361368978891584375551186255,
|
|
65
|
+
20391289379084797414557439284689954098721219201171527383291525676334308303023,
|
|
66
|
+
18146517657445423462330854383025300323335289319277199154920964274562014376193,
|
|
67
|
+
8080173465267536232534446836148661251987053305394647905212781979099916615292,
|
|
68
|
+
10796443006899450245502071131975731672911747129805343722228413358507805531141,
|
|
69
|
+
5404287610364961067658660283245291234008692303120470305032076412056764726509,
|
|
70
|
+
4623894483395123520243967718315330178025957095502546813929290333264120223168,
|
|
71
|
+
16845753148201777192406958674202574751725237939980634861948953189320362207797,
|
|
72
|
+
4622170486584704769521001011395820886029808520586507873417553166762370293671,
|
|
73
|
+
16688277490485052681847773549197928630624828392248424077804829676011512392564,
|
|
74
|
+
11878652861183667748838188993669912629573713271883125458838494308957689090959,
|
|
75
|
+
2436445725746972287496138382764643208791713986676129260589667864467010129482,
|
|
76
|
+
1888098689545151571063267806606510032698677328923740058080630641742325067877,
|
|
77
|
+
148924106504065664829055598316821983869409581623245780505601526786791681102,
|
|
78
|
+
18875020877782404439294079398043479420415331640996249745272087358069018086569,
|
|
79
|
+
15189693413320228845990326214136820307649565437237093707846682797649429515840,
|
|
80
|
+
19669450123472657781282985229369348220906547335081730205028099210442632534079,
|
|
81
|
+
5521922218264623411380547905210139511350706092570900075727555783240701821773,
|
|
82
|
+
4144769320246558352780591737261172907511489963810975650573703217887429086546,
|
|
83
|
+
10097732913112662248360143041019433907849917041759137293018029019134392559350,
|
|
84
|
+
1720059427972723034107765345743336447947522473310069975142483982753181038321,
|
|
85
|
+
6302388219880227251325608388535181451187131054211388356563634768253301290116,
|
|
86
|
+
6745410632962119604799318394592010194450845483518862700079921360015766217097,
|
|
87
|
+
10858157235265583624235850660462324469799552996870780238992046963007491306222,
|
|
88
|
+
20241898894740093733047052816576694435372877719072347814065227797906130857593,
|
|
89
|
+
10165780782761211520836029617746977303303335603838343292431760011576528327409,
|
|
90
|
+
2832093654883670345969792724123161241696170611611744759675180839473215203706,
|
|
91
|
+
153011722355526826233082383360057587249818749719433916258246100068258954737,
|
|
92
|
+
20196970640587451358539129330170636295243141659030208529338914906436009086943,
|
|
93
|
+
3180973917010545328313139835982464870638521890385603025657430208141494469656,
|
|
94
|
+
17198004293191777441573635123110935015228014028618868252989374962722329283022,
|
|
95
|
+
7642160509228669138628515458941659189680509753651629476399516332224325757132,
|
|
96
|
+
19346204940546791021518535594447257347218878114049998691060016493806845179755,
|
|
97
|
+
11501810868606870391127866188394535330696206817602260610801897042898616817272,
|
|
98
|
+
3113973447392053821824427670386252797811804954746053461397972968381571297505,
|
|
99
|
+
6545064306297957002139416752334741502722251869537551068239642131448768236585,
|
|
100
|
+
5203908808704813498389265425172875593837960384349653691918590736979872578408,
|
|
101
|
+
2246692432011290582160062129070762007374502637007107318105405626910313810224,
|
|
102
|
+
11760570435432189127645691249600821064883781677693087773459065574359292849137,
|
|
103
|
+
5543749482491340532547407723464609328207990784853381797689466144924198391839,
|
|
104
|
+
8837549193990558762776520822018694066937602576881497343584903902880277769302,
|
|
105
|
+
12855514863299373699594410385788943772765811961581749194183533625311486462501,
|
|
106
|
+
5363660674689121676875069134269386492382220935599781121306637800261912519729,
|
|
107
|
+
13162342403579303950549728848130828093497701266240457479693991108217307949435,
|
|
108
|
+
916941639326869583414469202910306428966657806899788970948781207501251816730,
|
|
109
|
+
15618589556584434434009868216186115416835494805174158488636000580759692174228,
|
|
110
|
+
8959562060028569701043973060670353733575345393653685776974948916988033453971,
|
|
111
|
+
16390754464333401712265575949874369157699293840516802426621216808905079127650,
|
|
112
|
+
168282396747788514908709091757591226095443902501365500003618183905496160435,
|
|
113
|
+
8327443473179334761744301768309008451162322941906921742120510244986704677004,
|
|
114
|
+
17213012626801210615058753489149961717422101711567228037597150941152495100640,
|
|
115
|
+
10394369641533736715250242399198097296122982486516256408681925424076248952280,
|
|
116
|
+
17784386835392322654196171115293700800825771210400152504776806618892170162248,
|
|
117
|
+
16533189939837087893364000390641148516479148564190420358849587959161226782982,
|
|
118
|
+
18725396114211370207078434315900726338547621160475533496863298091023511945076,
|
|
119
|
+
7132325028834551397904855671244375895110341505383911719294705267624034122405,
|
|
120
|
+
148317947440800089795933930720822493695520852448386394775371401743494965187,
|
|
121
|
+
19001050671757720352890779127693793630251266879994702723636759889378387053056,
|
|
122
|
+
18824274411769830274877839365728651108434404855803844568234862945613766611460,
|
|
123
|
+
12771414330193951156383998390424063470766226667986423961689712557338777174205,
|
|
124
|
+
11332046574800279729678603488745295198038913503395629790213378101166488244657,
|
|
125
|
+
9607550223176946388146938069307456967842408600269548190739947540821716354749,
|
|
126
|
+
8756385288462344550200229174435953103162307705310807828651304665320046782583,
|
|
127
|
+
176061952957067086877570020242717222844908281373122372938833890096257042779,
|
|
128
|
+
12200212977482648306758992405065921724409841940671166017620928947866825250857,
|
|
129
|
+
10868453624107875516866146499877130701929063632959660262366632833504750028858,
|
|
130
|
+
2016095394399807253596787752134573207202567875457560571095586743878953450738,
|
|
131
|
+
21815578223768330433802113452339488275704145896544481092014911825656390567514,
|
|
132
|
+
4923772847693564777744725640710197015181591950368494148029046443433103381621,
|
|
133
|
+
1813584943682214789802230765734821149202472893379265320098816901270224589984,
|
|
134
|
+
10810123816265612772922113403831964815724109728287572256602010709288980656498,
|
|
135
|
+
1153669123397255702524721206511185557982017410156956216465120456256288427021,
|
|
136
|
+
5007518659266430200134478928344522649876467369278722765097865662497773767152,
|
|
137
|
+
2511432546938591792036639990606464315121646668029252285288323664350666551637,
|
|
138
|
+
32883284540320451295484135704808083452381176816565850047310272290579727564,
|
|
139
|
+
10484856914279112612610993418405543310546746652738541161791501150994088679557,
|
|
140
|
+
2026733759645519472558796412979210009170379159866522399881566309631434814953,
|
|
141
|
+
14731806221235869882801331463708736361296174006732553130708107037190460654379,
|
|
142
|
+
14740327483193277147065845135561988641238516852487657117813536909482068950652,
|
|
143
|
+
18787428285295558781869865751953016580493190547148386433580291216673009884554,
|
|
144
|
+
3804047064713122820157099453648459188816376755739202017447862327783289895072,
|
|
145
|
+
16709604795697901641948603019242067672006293290826991671766611326262532802914,
|
|
146
|
+
11061717085931490100602849654034280576915102867237101935487893025907907250695,
|
|
147
|
+
2821730726367472966906149684046356272806484545281639696873240305052362149654,
|
|
148
|
+
17467794879902895769410571945152708684493991588672014763135370927880883292655,
|
|
149
|
+
1571520786233540988201616650622796363168031165456869481368085474420849243232,
|
|
150
|
+
10041051776251223165849354194892664881051125330236567356945669006147134614302,
|
|
151
|
+
3981753758468103976812813304477670033098707002886030847251581853700311567551,
|
|
152
|
+
4365864398105436789177703571412645548020537580493599380018290523813331678900,
|
|
153
|
+
2391801327305361293476178683853802679507598622000359948432171562543560193350,
|
|
154
|
+
214219368547551689972421167733597094823289857206402800635962137077096090722,
|
|
155
|
+
18192064100315141084242006659317257023098826945893371479835220462302399655674,
|
|
156
|
+
15487549757142039139328911515400805508248576685795694919457041092150651939253,
|
|
157
|
+
10142447197759703415402259672441315777933858467700579946665223821199077641122,
|
|
158
|
+
11246573086260753259993971254725613211193686683988426513880826148090811891866,
|
|
159
|
+
6574066859860991369704567902211886840188702386542112593710271426704432301235,
|
|
160
|
+
11311085442652291634822798307831431035776248927202286895207125867542470350078,
|
|
161
|
+
20977948360215259915441258687649465618185769343138135384346964466965010873779,
|
|
162
|
+
792781492853909872425531014397300057232399608769451037135936617996830018501,
|
|
163
|
+
5027602491523497423798779154966735896562099398367163998686335127580757861872,
|
|
164
|
+
14595204575654316237672764823862241845410365278802914304953002937313300553572,
|
|
165
|
+
13973538843621261113924259058427434053808430378163734641175100160836376897004,
|
|
166
|
+
16395063164993626722686882727042150241125309409717445381854913964674649318585,
|
|
167
|
+
8465768840047024550750516678171433288207841931251654898809033371655109266663,
|
|
168
|
+
21345603324471810861925019445720576814602636473739003852898308205213912255830,
|
|
169
|
+
21171984405852590343970239018692870799717057961108910523876770029017785940991,
|
|
170
|
+
10761027113757988230637066281488532903174559953630210849190212601991063767647,
|
|
171
|
+
6678298831065390834922566306988418588227382406175769592902974103663687992230,
|
|
172
|
+
4993662582188632374202316265508850988596880036291765531885657575099537176757,
|
|
173
|
+
18364168158495573675698600238443218434246806358811328083953887470513967121206,
|
|
174
|
+
3506345610354615013737144848471391553141006285964325596214723571988011984829,
|
|
175
|
+
248732676202643792226973868626360612151424823368345645514532870586234380100,
|
|
176
|
+
10090204501612803176317709245679152331057882187411777688746797044706063410969,
|
|
177
|
+
21297149835078365363970699581821844234354988617890041296044775371855432973500,
|
|
178
|
+
16729368143229828574342820060716366330476985824952922184463387490091156065099,
|
|
179
|
+
4467191506765339364971058668792642195242197133011672559453028147641428433293,
|
|
180
|
+
8677548159358013363291014307402600830078662555833653517843708051504582990832,
|
|
181
|
+
1022951765127126818581466247360193856197472064872288389992480993218645055345,
|
|
182
|
+
1888195070251580606973417065636430294417895423429240431595054184472931224452,
|
|
183
|
+
4221265384902749246920810956363310125115516771964522748896154428740238579824,
|
|
184
|
+
2825393571154632139467378429077438870179957021959813965940638905853993971879,
|
|
185
|
+
19171031072692942278056619599721228021635671304612437350119663236604712493093,
|
|
186
|
+
10780807212297131186617505517708903709488273075252405602261683478333331220733,
|
|
187
|
+
18230936781133176044598070768084230333433368654744509969087239465125979720995,
|
|
188
|
+
16901065971871379877929280081392692752968612240624985552337779093292740763381,
|
|
189
|
+
146494141603558321291767829522948454429758543710648402457451799015963102253,
|
|
190
|
+
2492729278659146790410698334997955258248120870028541691998279257260289595548,
|
|
191
|
+
2204224910006646535594933495262085193210692406133533679934843341237521233504,
|
|
192
|
+
16062117410185840274616925297332331018523844434907012275592638570193234893570,
|
|
193
|
+
5894928453677122829055071981254202951712129328678534592916926069506935491729,
|
|
194
|
+
4947482739415078212217504789923078546034438919537985740403824517728200332286,
|
|
195
|
+
16143265650645676880461646123844627780378251900510645261875867423498913438066,
|
|
196
|
+
397690828254561723549349897112473766901585444153303054845160673059519614409,
|
|
197
|
+
11272653598912269895509621181205395118899451234151664604248382803490621227687,
|
|
198
|
+
15566927854306879444693061574322104423426072650522411176731130806720753591030,
|
|
199
|
+
14222898219492484180162096141564251903058269177856173968147960855133048449557,
|
|
200
|
+
16690275395485630428127725067513114066329712673106153451801968992299636791385,
|
|
201
|
+
3667030990325966886479548860429670833692690972701471494757671819017808678584,
|
|
202
|
+
21280039024501430842616328642522421302481259067470872421086939673482530783142,
|
|
203
|
+
15895485136902450169492923978042129726601461603404514670348703312850236146328,
|
|
204
|
+
7733050956302327984762132317027414325566202380840692458138724610131603812560,
|
|
205
|
+
438123800976401478772659663183448617575635636575786782566035096946820525816,
|
|
206
|
+
814913922521637742587885320797606426167962526342166512693085292151314976633,
|
|
207
|
+
12368712287081330853637674140264759478736012797026621876924395982504369598764,
|
|
208
|
+
2494806857395134874309386694756263421445039103814920780777601708371037591569,
|
|
209
|
+
16101132301514338989512946061786320637179843435886825102406248183507106312877,
|
|
210
|
+
6252650284989960032925831409804233477770646333900692286731621844532438095656,
|
|
211
|
+
9277135875276787021836189566799935097400042171346561246305113339462708861695,
|
|
212
|
+
10493603554686607050979497281838644324893776154179810893893660722522945589063,
|
|
213
|
+
8673089750662709235894359384294076697329948991010184356091130382437645649279,
|
|
214
|
+
9558393272910366944245875920138649617479779893610128634419086981339060613250,
|
|
215
|
+
19012287860122586147374214541764572282814469237161122489573881644994964647218,
|
|
216
|
+
9783723818270121678386992630754842961728702994964214799008457449989291229500,
|
|
217
|
+
15550788416669474113213749561488122552422887538676036667630838378023479382689,
|
|
218
|
+
15016165746156232864069722572047169071786333815661109750860165034341572904221,
|
|
219
|
+
6506225705710197163670556961299945987488979904603689017479840649664564978574,
|
|
220
|
+
10796631184889302076168355684722130903785890709107732067446714470783437829037,
|
|
221
|
+
19871836214837460419845806980869387567383718044439891735114283113359312279540,
|
|
222
|
+
20871081766843466343749609089986071784031203517506781251203251608363835140622,
|
|
223
|
+
5100105771517691442278432864090229416166996183792075307747582375962855820797,
|
|
224
|
+
8777887112076272395250620301071581171386440850451972412060638225741125310886,
|
|
225
|
+
5300440870136391278944213332144327695659161151625757537632832724102670898756,
|
|
226
|
+
1205448543652932944633962232545707633928124666868453915721030884663332604536,
|
|
227
|
+
5542499997310181530432302492142574333860449305424174466698068685590909336771,
|
|
228
|
+
11028094245762332275225364962905938096659249161369092798505554939952525894293,
|
|
229
|
+
19187314764836593118404597958543112407224947638377479622725713735224279297009,
|
|
230
|
+
17047263688548829001253658727764731047114098556534482052135734487985276987385,
|
|
231
|
+
19914849528178967155534624144358541535306360577227460456855821557421213606310,
|
|
232
|
+
2929658084700714257515872921366736697080475676508114973627124569375444665664,
|
|
233
|
+
15092262360719700162343163278648422751610766427236295023221516498310468956361,
|
|
234
|
+
21578580340755653236050830649990190843552802306886938815497471545814130084980,
|
|
235
|
+
1258781501221760320019859066036073675029057285507345332959539295621677296991,
|
|
236
|
+
3819598418157732134449049289585680301176983019643974929528867686268702720163,
|
|
237
|
+
8653175945487997845203439345797943132543211416447757110963967501177317426221,
|
|
238
|
+
6614652990340435611114076169697104582524566019034036680161902142028967568142,
|
|
239
|
+
19212515502973904821995111796203064175854996071497099383090983975618035391558,
|
|
240
|
+
18664315914479294273286016871365663486061896605232511201418576829062292269769,
|
|
241
|
+
11498264615058604317482574216318586415670903094838791165247179252175768794889,
|
|
242
|
+
10814026414212439999107945133852431304483604215416531759535467355316227331774,
|
|
243
|
+
17566185590731088197064706533119299946752127014428399631467913813769853431107,
|
|
244
|
+
14016139747289624978792446847000951708158212463304817001882956166752906714332,
|
|
245
|
+
8242601581342441750402731523736202888792436665415852106196418942315563860366,
|
|
246
|
+
9244680976345080074252591214216060854998619670381671198295645618515047080988,
|
|
247
|
+
12216779172735125538689875667307129262237123728082657485828359100719208190116,
|
|
248
|
+
10702811721859145441471328511968332847175733707711670171718794132331147396634,
|
|
249
|
+
6479667912792222539919362076122453947926362746906450079329453150607427372979,
|
|
250
|
+
15117544653571553820496948522381772148324367479772362833334593000535648316185,
|
|
251
|
+
6842203153996907264167856337497139692895299874139131328642472698663046726780,
|
|
252
|
+
12732823292801537626009139514048596316076834307941224506504666470961250728055,
|
|
253
|
+
6936272626871035740815028148058841877090860312517423346335878088297448888663,
|
|
254
|
+
17297554111853491139852678417579991271009602631577069694853813331124433680030,
|
|
255
|
+
16641596134749940573104316021365063031319260205559553673368334842484345864859,
|
|
256
|
+
7400481189785154329569470986896455371037813715804007747228648863919991399081,
|
|
257
|
+
2273205422216987330510475127669563545720586464429614439716564154166712854048,
|
|
258
|
+
15162538063742142685306302282127534305212832649282186184583465569986719234456,
|
|
259
|
+
5628039096440332922248578319648483863204530861778160259559031331287721255522,
|
|
260
|
+
16085392195894691829567913404182676871326863890140775376809129785155092531260,
|
|
261
|
+
14227467863135365427954093998621993651369686288941275436795622973781503444257,
|
|
262
|
+
18224457394066545825553407391290108485121649197258948320896164404518684305122,
|
|
263
|
+
274945154732293792784580363548970818611304339008964723447672490026510689427,
|
|
264
|
+
11050822248291117548220126630860474473945266276626263036056336623671308219529,
|
|
265
|
+
2119542016932434047340813757208803962484943912710204325088879681995922344971
|
|
266
|
+
];
|
|
267
|
+
|
|
268
|
+
var t;
|
|
269
|
+
signal t2[nrounds];
|
|
270
|
+
signal t4[nrounds];
|
|
271
|
+
signal xL[nrounds-1];
|
|
272
|
+
signal xR[nrounds-1];
|
|
273
|
+
|
|
274
|
+
var c;
|
|
275
|
+
for (var i=0; i<nrounds; i++) {
|
|
276
|
+
if ((i == 0) || (i == nrounds - 1)) {
|
|
277
|
+
c = 0;
|
|
278
|
+
} else {
|
|
279
|
+
c = c_partial[i - 1];
|
|
280
|
+
}
|
|
281
|
+
t = (i==0) ? k+xL_in : k + xL[i-1] + c;
|
|
282
|
+
t2[i] <== t*t;
|
|
283
|
+
t4[i] <== t2[i]*t2[i];
|
|
284
|
+
if (i<nrounds-1) {
|
|
285
|
+
var aux = (i==0) ? xR_in : xR[i-1] ;
|
|
286
|
+
xL[i] <== aux + t4[i]*t;
|
|
287
|
+
xR[i] <== (i==0) ? xL_in : xL[i-1];
|
|
288
|
+
} else {
|
|
289
|
+
xR_out <== xR[i-1] + t4[i]*t;
|
|
290
|
+
xL_out <== xL[i-1];
|
|
291
|
+
}
|
|
292
|
+
}
|
|
293
|
+
}
|
|
@@ -0,0 +1,142 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Copyright 2018 0KIMS association.
|
|
3
|
+
|
|
4
|
+
This file is part of circom (Zero Knowledge Circuit Compiler).
|
|
5
|
+
|
|
6
|
+
circom is a free software: you can redistribute it and/or modify it
|
|
7
|
+
under the terms of the GNU General Public License as published by
|
|
8
|
+
the Free Software Foundation, either version 3 of the License, or
|
|
9
|
+
(at your option) any later version.
|
|
10
|
+
|
|
11
|
+
circom is distributed in the hope that it will be useful, but WITHOUT
|
|
12
|
+
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
13
|
+
or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
|
|
14
|
+
License for more details.
|
|
15
|
+
|
|
16
|
+
You should have received a copy of the GNU General Public License
|
|
17
|
+
along with circom. If not, see <https://www.gnu.org/licenses/>.
|
|
18
|
+
*/
|
|
19
|
+
|
|
20
|
+
/*
|
|
21
|
+
Source: https://en.wikipedia.org/wiki/Montgomery_curve
|
|
22
|
+
|
|
23
|
+
1 + y 1 + y
|
|
24
|
+
[u, v] = [ ------- , ---------- ]
|
|
25
|
+
1 - y (1 - y)x
|
|
26
|
+
|
|
27
|
+
*/
|
|
28
|
+
pragma circom 2.0.0;
|
|
29
|
+
|
|
30
|
+
template Edwards2Montgomery() {
|
|
31
|
+
signal input in[2];
|
|
32
|
+
signal output out[2];
|
|
33
|
+
|
|
34
|
+
out[0] <-- (1 + in[1]) / (1 - in[1]);
|
|
35
|
+
out[1] <-- out[0] / in[0];
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
out[0] * (1-in[1]) === (1 + in[1]);
|
|
39
|
+
out[1] * in[0] === out[0];
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
/*
|
|
43
|
+
|
|
44
|
+
u u - 1
|
|
45
|
+
[x, y] = [ ---, ------- ]
|
|
46
|
+
v u + 1
|
|
47
|
+
|
|
48
|
+
*/
|
|
49
|
+
template Montgomery2Edwards() {
|
|
50
|
+
signal input in[2];
|
|
51
|
+
signal output out[2];
|
|
52
|
+
|
|
53
|
+
out[0] <-- in[0] / in[1];
|
|
54
|
+
out[1] <-- (in[0] - 1) / (in[0] + 1);
|
|
55
|
+
|
|
56
|
+
out[0] * in[1] === in[0];
|
|
57
|
+
out[1] * (in[0] + 1) === in[0] - 1;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
/*
|
|
62
|
+
x2 - x1
|
|
63
|
+
lamda = ---------
|
|
64
|
+
y2 - y1
|
|
65
|
+
|
|
66
|
+
x3 + A + x1 + x2
|
|
67
|
+
x3 = B * lamda^2 - A - x1 -x2 => lamda^2 = ------------------
|
|
68
|
+
B
|
|
69
|
+
|
|
70
|
+
y3 = (2*x1 + x2 + A)*lamda - B*lamda^3 - y1 =>
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
=> y3 = lamda * ( 2*x1 + x2 + A - x3 - A - x1 - x2) - y1 =>
|
|
74
|
+
|
|
75
|
+
=> y3 = lamda * ( x1 - x3 ) - y1
|
|
76
|
+
|
|
77
|
+
----------
|
|
78
|
+
|
|
79
|
+
y2 - y1
|
|
80
|
+
lamda = ---------
|
|
81
|
+
x2 - x1
|
|
82
|
+
|
|
83
|
+
x3 = B * lamda^2 - A - x1 -x2
|
|
84
|
+
|
|
85
|
+
y3 = lamda * ( x1 - x3 ) - y1
|
|
86
|
+
|
|
87
|
+
*/
|
|
88
|
+
|
|
89
|
+
template MontgomeryAdd() {
|
|
90
|
+
signal input in1[2];
|
|
91
|
+
signal input in2[2];
|
|
92
|
+
signal output out[2];
|
|
93
|
+
|
|
94
|
+
var a = 168700;
|
|
95
|
+
var d = 168696;
|
|
96
|
+
|
|
97
|
+
var A = (2 * (a + d)) / (a - d);
|
|
98
|
+
var B = 4 / (a - d);
|
|
99
|
+
|
|
100
|
+
signal lamda;
|
|
101
|
+
|
|
102
|
+
lamda <-- (in2[1] - in1[1]) / (in2[0] - in1[0]);
|
|
103
|
+
lamda * (in2[0] - in1[0]) === (in2[1] - in1[1]);
|
|
104
|
+
|
|
105
|
+
out[0] <== B*lamda*lamda - A - in1[0] -in2[0];
|
|
106
|
+
out[1] <== lamda * (in1[0] - out[0]) - in1[1];
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
/*
|
|
110
|
+
|
|
111
|
+
x1_2 = x1*x1
|
|
112
|
+
|
|
113
|
+
3*x1_2 + 2*A*x1 + 1
|
|
114
|
+
lamda = ---------------------
|
|
115
|
+
2*B*y1
|
|
116
|
+
|
|
117
|
+
x3 = B * lamda^2 - A - x1 -x1
|
|
118
|
+
|
|
119
|
+
y3 = lamda * ( x1 - x3 ) - y1
|
|
120
|
+
|
|
121
|
+
*/
|
|
122
|
+
template MontgomeryDouble() {
|
|
123
|
+
signal input in[2];
|
|
124
|
+
signal output out[2];
|
|
125
|
+
|
|
126
|
+
var a = 168700;
|
|
127
|
+
var d = 168696;
|
|
128
|
+
|
|
129
|
+
var A = (2 * (a + d)) / (a - d);
|
|
130
|
+
var B = 4 / (a - d);
|
|
131
|
+
|
|
132
|
+
signal lamda;
|
|
133
|
+
signal x1_2;
|
|
134
|
+
|
|
135
|
+
x1_2 <== in[0] * in[0];
|
|
136
|
+
|
|
137
|
+
lamda <-- (3*x1_2 + 2*A*in[0] + 1 ) / (2*B*in[1]);
|
|
138
|
+
lamda * (2*B*in[1]) === (3*x1_2 + 2*A*in[0] + 1 );
|
|
139
|
+
|
|
140
|
+
out[0] <== B*lamda*lamda - A - 2*in[0];
|
|
141
|
+
out[1] <== lamda * (in[0] - out[0]) - in[1];
|
|
142
|
+
}
|