Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/iden3/circomlib
Browse files Browse the repository at this point in the history
  • Loading branch information
arnaucube committed Sep 5, 2019
2 parents e9b5da7 + f9e0484 commit 48cfa3e
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 10 deletions.
16 changes: 10 additions & 6 deletions circuits/escalarmulany.circom
Expand Up @@ -19,6 +19,7 @@

include "montgomery.circom";
include "babyjub.circom";
include "comparators.circom";

template Multiplexor2() {
signal input sel;
Expand Down Expand Up @@ -138,6 +139,8 @@ template EscalarMulAny(n) {
component doublers[nsegments-1];
component m2e[nsegments-1];
component adders[nsegments-1];
component zeropoint = IsZero();
zeropoint.in <== p[0];

var s;
var i;
Expand All @@ -154,8 +157,9 @@ template EscalarMulAny(n) {
}

if (s==0) {
p[0] ==> segments[s].p[0];
p[1] ==> segments[s].p[1];
// force G8 point if input point is zero
segments[s].p[0] <== p[0] + (5299619240641551281634865583518297030282874472190772894086521144482721001553 - p[0])*zeropoint.out;
segments[s].p[1] <== p[1] + (16950150798460657717958625567821834550301663161624707787222815936182638968203 - p[1])*zeropoint.out;
} else {
doublers[s-1] = MontgomeryDouble();
m2e[s-1] = Montgomery2Edwards();
Expand Down Expand Up @@ -183,10 +187,10 @@ template EscalarMulAny(n) {
}

if (nsegments == 1) {
segments[0].out[0] ==> out[0];
segments[0].out[1] ==> out[1];
segments[0].out[0]*(1-zeropoint.out) ==> out[0];
segments[0].out[1]+(1-segments[0].out[1])*zeropoint.out ==> out[1];
} else {
adders[nsegments-2].xout ==> out[0];
adders[nsegments-2].yout ==> out[1];
adders[nsegments-2].xout*(1-zeropoint.out) ==> out[0];
adders[nsegments-2].yout+(1-adders[nsegments-2].yout)*zeropoint.out ==> out[1];
}
}
2 changes: 1 addition & 1 deletion circuits/escalarmulfix.circom
Expand Up @@ -246,7 +246,7 @@ template EscalarMulFix(n, BASE) {
var s;
var i;
var nseg;
var nWindows
var nWindows;

for (s=0; s<nsegments; s++) {

Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "circomlib",
"version": "0.0.14",
"version": "0.0.15",
"description": "Basic circuits library for Circom",
"main": "index.js",
"directories": {
Expand All @@ -26,7 +26,7 @@
"dependencies": {
"blake-hash": "^1.1.0",
"blake2b": "^2.1.3",
"snarkjs": "^0.1.18",
"snarkjs": "^0.1.19",
"typedarray-to-buffer": "^3.1.5",
"web3": "^1.0.0-beta.55"
},
Expand Down

0 comments on commit 48cfa3e

Please sign in to comment.