/* ┏━━━━━━━━━━━┓ ┃ ┃ ┃ ┃ (inx, iny) ══════════════════════════════════════════▶┃ EC Point ┃ ┃ ╠═▶ (outx, outy) ╔══▶┃ Adder ┃ ║ ┃ ┃ ║ ┃ ┃ ║ ┃ ┃ ┏━━━━━━━━━━━┓ ┏━━━━━━━━━━━━┓ ║ ┗━━━━━━━━━━━┛ ┃ ┃ ┃ ┃ ║ ┃ ┃ ┃ ┃ ║ ┃ ╠═══(p0x,p0y)═══▶┃ ┃ ║ ┃ ╠═══(p1x,p1y)═══▶┃ ┃ ║ ┃ ╠═══(p2x,p2y)═══▶┃ ┃ ║ ┃ ╠═══(p3x,p3y)═══▶┃ ┃ ║ ┃ ╠═══(p4x,p4y)═══▶┃ ┃ ║ ┃ ╠═══(p5x,p5y)═══▶┃ ┃ ║ ┃ ╠═══(p6x,p6y)═══▶┃ ┃ ║ ┃ Constant ╠═══(p7x,p7y)═══▶┃ ┃ ║ ┃ Points ┃ ┃ Mux4 ╠══╝ ┃ ╠═══(p8x,p8y)═══▶┃ ┃ ┃ ╠═══(p9x,p9y)═══▶┃ ┃ ┃ ╠══(p10x,p10y)══▶┃ ┃ ┃ ╠══(p11x,p11y)══▶┃ ┃ ┃ ╠══(p12x,p12y)══▶┃ ┃ ┃ ╠══(p13x,p13y)══▶┃ ┃ ┃ ╠══(p14x,p14y)══▶┃ ┃ ┃ ╠══(p15x,p15y)══▶┃ ┃ ┃ ┃ ┃ ┃ ┃ ┃ ┃ ┃ ┗━━━━━━━━━━━┛ ┗━━━━━━━━━━━━┛ ▲ ▲ ▲ ▲ │ │ │ │ s0 ─────────────────────────────────┘ │ │ │ s1 ────────────────────────────────────┘ │ │ s2 ───────────────────────────────────────┘ │ s3 ──────────────────────────────────────────┘ */ include "mux4.circom"; include "expw4table.circom"; include "babyjub.circom"; template ExpWindow(k) { signal input in[2]; signal input sel[4]; signal output out[2]; component table; component mux; component adder; var i; table = ExpW4Table(k); mux = MultiMux4(2); adder = BabyAdd(); for (i=0; i<4; i++) { sel[i] ==> mux.s[i]; } for (i=0; i<16; i++) { table.out[i][0] ==> mux.c[0][i]; table.out[i][1] ==> mux.c[1][i]; } in[0] ==> adder.x1; in[1] ==> adder.y1; mux.out[0] ==> adder.x2; mux.out[1] ==> adder.y2; adder.xout ==> out[0]; adder.yout ==> out[1]; } /* ┏━━━━━━━━━┓ ┏━━━━━━━━━┓ ┏━━━━━━━━━━━━━━━━━━━┓ ┃ ┃ ┃ ┃ ┃ ┃ (0,1) ════▶┃Window(0)┃═════▶┃Window(1)┃════════ . . . . ═════════▶┃ Window(nBlocks-1) ┃═════▶ out ┃ ┃ ┃ ┃ ┃ ┃ ┗━━━━━━━━━┛ ┗━━━━━━━━━┛ ┗━━━━━━━━━━━━━━━━━━━┛ ▲ ▲ ▲ ▲ ▲ ▲ ▲ ▲ ▲ ▲ ▲ ▲ in[0]─────────┘ │ │ │ │ │ │ │ │ │ │ │ in[1]───────────┘ │ │ │ │ │ │ │ │ │ │ in[2]─────────────┘ │ │ │ │ │ │ │ 0 0 in[3]───────────────┘ │ │ │ │ │ │ in[4]──────────────────────────┘ │ │ │ │ │ in[5]────────────────────────────┘ │ │ │ │ in[6]──────────────────────────────┘ │ │ │ in[7]────────────────────────────────┘ │ │ . │ │ . │ │ in[n-2]─────────────────────────────────────────────────────────────────────┘ │ in[n-1]───────────────────────────────────────────────────────────────────────┘ */ template Exp(n) { signal input in[n]; signal output out[2]; var nBlocks = ((n-1)>>2)+1; var i; var j; component windows[nBlocks]; // Construct the windows for (i=0; i= n) { windows[i].sel[j] <== 0; } else { windows[i].sel[j] <== in[i*4+j]; } } } // Start with generator windows[0].in[0] <== 0; windows[0].in[1] <== 1; for(i=0; i windows[i+1].in[0]; windows[i].out[1] ==> windows[i+1].in[1]; } windows[nBlocks-1].out[0] ==> out[0]; windows[nBlocks-1].out[1] ==> out[1]; }