circomlib/test/circuits/pointbits_loopback.circom

24 lines
382 B
Plaintext
Raw Normal View History

2018-12-06 19:32:49 +03:00
include "../../circuits/pointbits.circom";
template Main() {
signal input in[2];
var i
component p2b = Point2Bits_Strict();
component b2p = Bits2Point_Strict();
p2b.in[0] <== in[0];
p2b.in[1] <== in[1];
for (i=0; i<256; i++) {
b2p.in[i] <== p2b.out[i];
}
b2p.out[0] === in[0];
b2p.out[1] === in[1];
}
component main = Main();