@maci-protocol/circuits 0.0.0-ci.a577366 → 0.0.0-ci.a584b1a
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/LICENSE +1 -2
- package/build/ts/{genZkeys.d.ts → generateZkeys.d.ts} +1 -1
- package/build/ts/generateZkeys.d.ts.map +1 -0
- package/build/ts/{genZkeys.js → generateZkeys.js} +1 -1
- package/build/ts/generateZkeys.js.map +1 -0
- package/build/ts/types.d.ts +11 -11
- package/build/ts/types.d.ts.map +1 -1
- package/build/tsconfig.build.tsbuildinfo +1 -1
- package/circom/circuits.json +7 -7
- package/circom/coordinator/non-qv/processMessages.circom +97 -100
- package/circom/coordinator/non-qv/tallyVotes.circom +35 -32
- package/circom/coordinator/qv/processMessages.circom +98 -98
- package/circom/coordinator/qv/tallyVotes.circom +54 -54
- package/circom/utils/{calculateTotal.circom → CalculateTotal.circom} +2 -0
- package/circom/utils/{verifySignature.circom → EdDSAPoseidonVerifier.circom} +40 -66
- package/circom/utils/MessageHasher.circom +57 -0
- package/circom/utils/MessageToCommand.circom +107 -0
- package/circom/utils/PoseidonHasher.circom +29 -0
- package/circom/utils/{privToPubKey.circom → PrivateToPublicKey.circom} +12 -10
- package/circom/utils/VerifySignature.circom +39 -0
- package/circom/utils/full/MessageValidator.circom +93 -0
- package/circom/utils/full/StateLeafAndBallotTransformer.circom +122 -0
- package/circom/utils/non-qv/{messageValidator.circom → MessageValidator.circom} +15 -13
- package/circom/utils/non-qv/{stateLeafAndBallotTransformer.circom → StateLeafAndBallotTransformer.circom} +36 -36
- package/circom/utils/qv/{messageValidator.circom → MessageValidator.circom} +15 -13
- package/circom/utils/qv/{stateLeafAndBallotTransformer.circom → StateLeafAndBallotTransformer.circom} +36 -36
- package/circom/utils/trees/BinaryMerkleRoot.circom +11 -3
- package/circom/utils/trees/CheckRoot.circom +18 -14
- package/circom/utils/trees/LeafExists.circom +1 -1
- package/circom/utils/trees/{MerkleGeneratePathIndices.circom → MerklePathIndicesGenerator.circom} +11 -7
- package/circom/utils/trees/MerkleTreeInclusionProof.circom +6 -5
- package/circom/utils/trees/incrementalQuinaryTree.circom +2 -2
- package/circom/voter/PollJoined.circom +43 -0
- package/circom/voter/PollJoining.circom +54 -0
- package/package.json +13 -10
- package/build/ts/genZkeys.d.ts.map +0 -1
- package/build/ts/genZkeys.js.map +0 -1
- package/circom/utils/hashers.circom +0 -78
- package/circom/utils/messageToCommand.circom +0 -78
- package/circom/voter/poll.circom +0 -92
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
pragma circom 2.0.0;
|
|
2
|
+
|
|
3
|
+
// local imports
|
|
4
|
+
include "../utils/PoseidonHasher.circom";
|
|
5
|
+
include "../utils/PrivateToPublicKey.circom";
|
|
6
|
+
include "../utils/trees/BinaryMerkleRoot.circom";
|
|
7
|
+
|
|
8
|
+
// Poll Joining Circuit
|
|
9
|
+
// Allows a user to prove knowledge of a private key that is signed up to
|
|
10
|
+
// a MACI contract.
|
|
11
|
+
template PollJoining(stateTreeDepth) {
|
|
12
|
+
// Constants defining the tree structure
|
|
13
|
+
var STATE_TREE_ARITY = 2;
|
|
14
|
+
|
|
15
|
+
// User's private key
|
|
16
|
+
signal input privateKey;
|
|
17
|
+
// Poll's public key
|
|
18
|
+
signal input pollPublicKey[2];
|
|
19
|
+
// Siblings
|
|
20
|
+
signal input siblings[stateTreeDepth][STATE_TREE_ARITY - 1];
|
|
21
|
+
// Indices
|
|
22
|
+
signal input indices[stateTreeDepth];
|
|
23
|
+
// User's hashed private key
|
|
24
|
+
signal input nullifier;
|
|
25
|
+
// MACI State tree root which proves the user is signed up
|
|
26
|
+
signal input stateRoot;
|
|
27
|
+
// The actual tree depth (might be <= stateTreeDepth) used in BinaryMerkleRoot
|
|
28
|
+
signal input actualStateTreeDepth;
|
|
29
|
+
// The poll id
|
|
30
|
+
signal input pollId;
|
|
31
|
+
|
|
32
|
+
// Compute the nullifier (hash of private key and poll id)
|
|
33
|
+
var computedNullifier = PoseidonHasher(2)([privateKey, pollId]);
|
|
34
|
+
nullifier === computedNullifier;
|
|
35
|
+
|
|
36
|
+
// User private to public key
|
|
37
|
+
var derivedPublicKey[2] = PrivateToPublicKey()(privateKey);
|
|
38
|
+
// Hash the public key
|
|
39
|
+
var publicKeyHash = PoseidonHasher(2)([derivedPublicKey[0], derivedPublicKey[1]]);
|
|
40
|
+
|
|
41
|
+
// Ensure the poll public key is the same as the maci one (public input)
|
|
42
|
+
derivedPublicKey[0] === pollPublicKey[0];
|
|
43
|
+
derivedPublicKey[1] === pollPublicKey[1];
|
|
44
|
+
|
|
45
|
+
// Inclusion proof
|
|
46
|
+
var calculatedRoot = BinaryMerkleRoot(stateTreeDepth)(
|
|
47
|
+
publicKeyHash,
|
|
48
|
+
actualStateTreeDepth,
|
|
49
|
+
indices,
|
|
50
|
+
siblings
|
|
51
|
+
);
|
|
52
|
+
|
|
53
|
+
calculatedRoot === stateRoot;
|
|
54
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@maci-protocol/circuits",
|
|
3
|
-
"version": "0.0.0-ci.
|
|
3
|
+
"version": "0.0.0-ci.a584b1a",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "zk-SNARK circuits for MACI",
|
|
6
6
|
"main": "build/ts/index.js",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"scripts": {
|
|
19
19
|
"build-test-circuits-c": "ts-node ./ts/compile.ts --cWitness",
|
|
20
20
|
"build-test-circuits-wasm": "ts-node ./ts/compile.ts",
|
|
21
|
-
"
|
|
21
|
+
"generate-zkeys": "ts-node ./ts/generateZkeys.ts",
|
|
22
22
|
"info": "NODE_OPTIONS=--max-old-space-size=4096 ts-node ./ts/info.ts",
|
|
23
23
|
"watch": "tsc --watch",
|
|
24
24
|
"build": "tsc -p tsconfig.build.json",
|
|
@@ -28,12 +28,15 @@
|
|
|
28
28
|
"mocha-test": "NODE_OPTIONS=--max-old-space-size=4096 ts-mocha --exit -g '^(?!.*\\[fuzz\\]).*$'",
|
|
29
29
|
"test": "pnpm run mocha-test ts/__tests__/*.test.ts",
|
|
30
30
|
"test:fuzz": "NODE_OPTIONS=--max-old-space-size=4096 ts-mocha --exit -g '\\[fuzz\\]' ./ts/__tests__/*.test.ts",
|
|
31
|
-
"test:
|
|
31
|
+
"test:poseidonHasher": "pnpm run mocha-test ts/__tests__/PoseidonHasher.test.ts",
|
|
32
|
+
"test:messageHasher": "pnpm run mocha-test ts/__tests__/MessageHasher.test.ts",
|
|
32
33
|
"test:slAndBallotTransformer": "pnpm run mocha-test ts/__tests__/StateLeafAndBallotTransformer.test.ts",
|
|
34
|
+
"test:slAndBallotTransformerFull": "pnpm run mocha-test ts/__tests__/StateLeafAndBallotTransformerFull.test.ts",
|
|
33
35
|
"test:messageToCommand": "pnpm run mocha-test ts/__tests__/MessageToCommand.test.ts",
|
|
34
36
|
"test:messageValidator": "pnpm run mocha-test ts/__tests__/MessageValidator.test.ts",
|
|
37
|
+
"test:messageValidatorFull": "pnpm run mocha-test ts/__tests__/MessageValidatorFull.test.ts",
|
|
35
38
|
"test:verifySignature": "pnpm run mocha-test ts/__tests__/VerifySignature.test.ts",
|
|
36
|
-
"test:
|
|
39
|
+
"test:privateToPublicKey": "pnpm run mocha-test ts/__tests__/PrivateToPublicKey.test.ts",
|
|
37
40
|
"test:calculateTotal": "pnpm run mocha-test ts/__tests__/CalculateTotal.test.ts",
|
|
38
41
|
"test:processMessages": "pnpm run mocha-test ts/__tests__/ProcessMessages.test.ts",
|
|
39
42
|
"test:tallyVotes": "pnpm run mocha-test ts/__tests__/TallyVotes.test.ts",
|
|
@@ -43,10 +46,10 @@
|
|
|
43
46
|
"test:pollJoined": "pnpm run mocha-test ts/__tests__/PollJoined.test.ts"
|
|
44
47
|
},
|
|
45
48
|
"dependencies": {
|
|
46
|
-
"@maci-protocol/core": "0.0.0-ci.
|
|
47
|
-
"@maci-protocol/crypto": "0.0.0-ci.
|
|
48
|
-
"@maci-protocol/domainobjs": "0.0.0-ci.
|
|
49
|
-
"@maci-protocol/sdk": "0.0.0-ci.
|
|
49
|
+
"@maci-protocol/core": "0.0.0-ci.a584b1a",
|
|
50
|
+
"@maci-protocol/crypto": "0.0.0-ci.a584b1a",
|
|
51
|
+
"@maci-protocol/domainobjs": "0.0.0-ci.a584b1a",
|
|
52
|
+
"@maci-protocol/sdk": "0.0.0-ci.a584b1a",
|
|
50
53
|
"@zk-kit/circuits": "^0.4.0",
|
|
51
54
|
"circomkit": "^0.3.2",
|
|
52
55
|
"circomlib": "^2.0.5"
|
|
@@ -55,7 +58,7 @@
|
|
|
55
58
|
"@types/chai": "^4.3.11",
|
|
56
59
|
"@types/chai-as-promised": "^7.1.8",
|
|
57
60
|
"@types/mocha": "^10.0.10",
|
|
58
|
-
"@types/node": "^22.
|
|
61
|
+
"@types/node": "^22.15.8",
|
|
59
62
|
"@types/snarkjs": "^0.7.9",
|
|
60
63
|
"@zk-kit/baby-jubjub": "^1.0.3",
|
|
61
64
|
"chai": "^4.3.10",
|
|
@@ -67,5 +70,5 @@
|
|
|
67
70
|
"ts-node": "^10.9.1",
|
|
68
71
|
"typescript": "^5.8.3"
|
|
69
72
|
},
|
|
70
|
-
"gitHead": "
|
|
73
|
+
"gitHead": "8fb445ad44f36ec1dbb62d097ac601f39d198d26"
|
|
71
74
|
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"genZkeys.d.ts","sourceRoot":"","sources":["../../ts/genZkeys.ts"],"names":[],"mappings":"AAQA;;;;;;GAMG;AACH,eAAO,MAAM,aAAa,GAAU,aAAa,MAAM,KAAG,OAAO,CAAC,IAAI,CA2CrE,CAAC"}
|
package/build/ts/genZkeys.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"genZkeys.js","sourceRoot":"","sources":["../../ts/genZkeys.ts"],"names":[],"mappings":";;;;;;AAAA,4CAAkD;AAClD,yCAAgF;AAEhF,4CAAoB;AACpB,gDAAwB;AAIxB;;;;;;GAMG;AACI,MAAM,aAAa,GAAG,KAAK,EAAE,UAAmB,EAAiB,EAAE;IACxE,8BAA8B;IAC9B,MAAM,cAAc,GAAG,cAAI,CAAC,OAAO,CAAC,SAAS,EAAE,IAAI,EAAE,gBAAgB,CAAC,CAAC;IACvE,MAAM,eAAe,GAAG,IAAI,CAAC,KAAK,CAAC,MAAM,YAAE,CAAC,QAAQ,CAAC,QAAQ,CAAC,cAAc,EAAE,OAAO,CAAC,CAAoB,CAAC;IAC3G,MAAM,kBAAkB,GAAG,cAAI,CAAC,OAAO,CAAC,SAAS,EAAE,IAAI,EAAE,QAAQ,EAAE,eAAe,CAAC,CAAC;IACpF,MAAM,qBAAqB,GAAG,IAAI,CAAC,KAAK,CACtC,MAAM,YAAE,CAAC,QAAQ,CAAC,QAAQ,CAAC,kBAAkB,EAAE,OAAO,CAAC,CACZ,CAAC;IAC9C,MAAM,eAAe,GAA4B,MAAM,CAAC,OAAO,CAAC,qBAAqB,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,EAAE,MAAM,CAAC,EAAE,EAAE,CAAC,CAAC;QAC9G,IAAI;QACJ,GAAG,MAAM;KACV,CAAC,CAAC,CAAC;IAEJ,MAAM,OAAO,GAAG,UAAU,CAAC,CAAC,CAAC,cAAI,CAAC,OAAO,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC;IAClE,8BAA8B;IAC9B,IAAI,OAAO,EAAE,CAAC;QACZ,eAAe,CAAC,QAAQ,GAAG,OAAO,CAAC;QACnC,eAAe,CAAC,OAAO,GAAG,OAAO,CAAC;IACpC,CAAC;IAED,MAAM,iBAAiB,GAAG,IAAI,qBAAS,CAAC;QACtC,GAAG,eAAe;QAClB,OAAO,EAAE,KAAK;KACf,CAAC,CAAC;IAEH,oDAAoD;IACpD,4DAA4D;IAC5D,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,eAAe,CAAC,MAAM,EAAE,CAAC,IAAI,CAAC,EAAE,CAAC;QACnD,MAAM,OAAO,GAAG,eAAe,CAAC,CAAC,CAAC,CAAC;QAEnC,sCAAsC;QACtC,OAAO,CAAC,GAAG,CAAC,uBAAuB,OAAO,CAAC,IAAI,KAAK,CAAC,CAAC;QAEtD,4CAA4C;QAC5C,MAAM,EAAE,aAAa,EAAE,GAAG,MAAM,iBAAiB,CAAC,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;QACtE,kBAAkB;QAClB,MAAM,QAAQ,GAAG,cAAI,CAAC,OAAO,CAAC,eAAe,CAAC,QAAQ,EAAE,OAAO,CAAC,IAAI,EAAE,GAAG,OAAO,CAAC,IAAI,SAAS,CAAC,CAAC;QAChG,4CAA4C;QAC5C,MAAM,YAAE,CAAC,QAAQ,CAAC,MAAM,CAAC,aAAa,EAAE,QAAQ,CAAC,CAAC;IACpD,CAAC;IAED,sCAAsC;IACtC,MAAM,IAAA,kBAAY,GAAE,CAAC;AACvB,CAAC,CAAC;AA3CW,QAAA,aAAa,iBA2CxB;AAEF,IAAI,OAAO,CAAC,IAAI,KAAK,MAAM,EAAE,CAAC;IAC5B,CAAC,KAAK,IAAI,EAAE;QACV,MAAM,eAAe,GAAG,OAAO,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,CAAC;QAC1D,IAAI,eAAe,KAAK,CAAC,CAAC,EAAE,CAAC;YAC3B,MAAM,IAAA,qBAAa,GAAE,CAAC;QACxB,CAAC;aAAM,CAAC;YACN,MAAM,YAAY,GAAG,OAAO,CAAC,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,OAAO,CAAC,WAAW,CAAC,GAAG,CAAC,CAAC,CAAC;YACzE,MAAM,IAAA,qBAAa,EAAC,YAAY,CAAC,CAAC;QACpC,CAAC;IACH,CAAC,CAAC,EAAE,CAAC;AACP,CAAC"}
|
|
@@ -1,78 +0,0 @@
|
|
|
1
|
-
pragma circom 2.0.0;
|
|
2
|
-
|
|
3
|
-
// zk-kit imports
|
|
4
|
-
include "./poseidon-cipher.circom";
|
|
5
|
-
|
|
6
|
-
/**
|
|
7
|
-
* Computes the Poseidon hash for an array of n inputs, including a default initial state
|
|
8
|
-
* of zero not counted in n. First, extends the inputs by prepending a zero, creating an array [0, inputs].
|
|
9
|
-
* Then, the Poseidon hash of the extended inputs is calculated, with the first element of the
|
|
10
|
-
* result assigned as the output.
|
|
11
|
-
*/
|
|
12
|
-
template PoseidonHasher(n) {
|
|
13
|
-
signal input inputs[n];
|
|
14
|
-
signal output out;
|
|
15
|
-
|
|
16
|
-
// [0, inputs].
|
|
17
|
-
var computedExtendedInputs[n + 1];
|
|
18
|
-
computedExtendedInputs[0] = 0;
|
|
19
|
-
|
|
20
|
-
for (var i = 0; i < n; i++) {
|
|
21
|
-
computedExtendedInputs[i + 1] = inputs[i];
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
// Compute the Poseidon hash of the extended inputs.
|
|
25
|
-
var computedPoseidonPerm[n + 1];
|
|
26
|
-
computedPoseidonPerm = PoseidonPerm(n + 1)(computedExtendedInputs);
|
|
27
|
-
|
|
28
|
-
out <== computedPoseidonPerm[0];
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
/**
|
|
32
|
-
* Hashes a MACI message and the public key used for message encryption.
|
|
33
|
-
* This template processes 10 message inputs and a 2-element public key
|
|
34
|
-
* combining them using the Poseidon hash function. The hashing process involves two stages:
|
|
35
|
-
* 1. hashing message parts in groups of five and,
|
|
36
|
-
* 2. hashing the grouped results alongside the first message input and
|
|
37
|
-
* the encryption public key to produce a final hash output.
|
|
38
|
-
*/
|
|
39
|
-
template MessageHasher() {
|
|
40
|
-
// The MACI message is composed of 10 parts.
|
|
41
|
-
signal input in[10];
|
|
42
|
-
// the public key used to encrypt the message.
|
|
43
|
-
signal input encPubKey[2];
|
|
44
|
-
// we output an hash.
|
|
45
|
-
signal output hash;
|
|
46
|
-
|
|
47
|
-
// Hasher4(
|
|
48
|
-
// Hasher5_1(in[1], in[2], in[3], in[4], in[5]),
|
|
49
|
-
// Hasher5_2(in[6], in[7], in[8], in[9], in[10])
|
|
50
|
-
// in[11],
|
|
51
|
-
// in[12]
|
|
52
|
-
// )
|
|
53
|
-
|
|
54
|
-
var computedHasher5_1;
|
|
55
|
-
computedHasher5_1 = PoseidonHasher(5)([
|
|
56
|
-
in[0],
|
|
57
|
-
in[1],
|
|
58
|
-
in[2],
|
|
59
|
-
in[3],
|
|
60
|
-
in[4]
|
|
61
|
-
]);
|
|
62
|
-
|
|
63
|
-
var computedHasher5_2;
|
|
64
|
-
computedHasher5_2 = PoseidonHasher(5)([
|
|
65
|
-
in[5],
|
|
66
|
-
in[6],
|
|
67
|
-
in[7],
|
|
68
|
-
in[8],
|
|
69
|
-
in[9]
|
|
70
|
-
]);
|
|
71
|
-
|
|
72
|
-
hash <== PoseidonHasher(4)([
|
|
73
|
-
computedHasher5_1,
|
|
74
|
-
computedHasher5_2,
|
|
75
|
-
encPubKey[0],
|
|
76
|
-
encPubKey[1]
|
|
77
|
-
]);
|
|
78
|
-
}
|
|
@@ -1,78 +0,0 @@
|
|
|
1
|
-
pragma circom 2.0.0;
|
|
2
|
-
|
|
3
|
-
// circomlib import
|
|
4
|
-
include "./bitify.circom";
|
|
5
|
-
// zk-kit imports
|
|
6
|
-
include "./ecdh.circom";
|
|
7
|
-
include "./unpack-element.circom";
|
|
8
|
-
include "./poseidon-cipher.circom";
|
|
9
|
-
// local imports
|
|
10
|
-
include "./hashers.circom";
|
|
11
|
-
|
|
12
|
-
/**
|
|
13
|
-
* Converts a MACI message to a command by decrypting it.
|
|
14
|
-
* Processes encrypted MACI messages into structured MACI commands
|
|
15
|
-
* by decrypting using a shared key derived from ECDH. After decryption,
|
|
16
|
-
* unpacks and assigns decrypted values to specific command components.
|
|
17
|
-
*/
|
|
18
|
-
template MessageToCommand() {
|
|
19
|
-
var MSG_LENGTH = 7;
|
|
20
|
-
var PACKED_CMD_LENGTH = 4;
|
|
21
|
-
var UNPACKED_CMD_LENGTH = 8;
|
|
22
|
-
var UNPACK_ELEM_LENGTH = 5;
|
|
23
|
-
var DECRYPTED_LENGTH = 9;
|
|
24
|
-
var MESSAGE_PARTS = 10;
|
|
25
|
-
|
|
26
|
-
// The message is an array of 10 parts.
|
|
27
|
-
signal input message[MESSAGE_PARTS];
|
|
28
|
-
signal input encPrivKey;
|
|
29
|
-
signal input encPubKey[2];
|
|
30
|
-
|
|
31
|
-
// Command parts.
|
|
32
|
-
signal output stateIndex;
|
|
33
|
-
signal output newPubKey[2];
|
|
34
|
-
signal output voteOptionIndex;
|
|
35
|
-
signal output newVoteWeight;
|
|
36
|
-
signal output nonce;
|
|
37
|
-
signal output pollId;
|
|
38
|
-
signal output salt;
|
|
39
|
-
signal output sigR8[2];
|
|
40
|
-
signal output sigS;
|
|
41
|
-
// Packed command.
|
|
42
|
-
signal output packedCommandOut[PACKED_CMD_LENGTH];
|
|
43
|
-
|
|
44
|
-
// Generate the shared key for decrypting the message.
|
|
45
|
-
var computedEcdh[2] = Ecdh()(encPrivKey, encPubKey);
|
|
46
|
-
|
|
47
|
-
// Decrypt the message using Poseidon decryption.
|
|
48
|
-
var computedDecryptor[DECRYPTED_LENGTH] = PoseidonDecryptWithoutCheck(MSG_LENGTH)(
|
|
49
|
-
message,
|
|
50
|
-
0,
|
|
51
|
-
computedEcdh
|
|
52
|
-
);
|
|
53
|
-
|
|
54
|
-
// Save the decrypted message into a packed command signal.
|
|
55
|
-
signal packedCommand[PACKED_CMD_LENGTH];
|
|
56
|
-
for (var i = 0; i < PACKED_CMD_LENGTH; i++) {
|
|
57
|
-
packedCommand[i] <== computedDecryptor[i];
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
var computedUnpackElement[UNPACK_ELEM_LENGTH] = UnpackElement(UNPACK_ELEM_LENGTH)(packedCommand[0]);
|
|
61
|
-
|
|
62
|
-
// Everything below were packed into the first element.
|
|
63
|
-
stateIndex <== computedUnpackElement[4];
|
|
64
|
-
voteOptionIndex <== computedUnpackElement[3];
|
|
65
|
-
newVoteWeight <== computedUnpackElement[2];
|
|
66
|
-
nonce <== computedUnpackElement[1];
|
|
67
|
-
pollId <== computedUnpackElement[0];
|
|
68
|
-
|
|
69
|
-
newPubKey[0] <== packedCommand[1];
|
|
70
|
-
newPubKey[1] <== packedCommand[2];
|
|
71
|
-
salt <== packedCommand[3];
|
|
72
|
-
|
|
73
|
-
sigR8[0] <== computedDecryptor[4];
|
|
74
|
-
sigR8[1] <== computedDecryptor[5];
|
|
75
|
-
sigS <== computedDecryptor[6];
|
|
76
|
-
|
|
77
|
-
packedCommandOut <== packedCommand;
|
|
78
|
-
}
|
package/circom/voter/poll.circom
DELETED
|
@@ -1,92 +0,0 @@
|
|
|
1
|
-
pragma circom 2.0.0;
|
|
2
|
-
|
|
3
|
-
// local imports
|
|
4
|
-
include "../utils/hashers.circom";
|
|
5
|
-
include "../utils/privToPubKey.circom";
|
|
6
|
-
include "../utils/trees/BinaryMerkleRoot.circom";
|
|
7
|
-
|
|
8
|
-
// Poll Joining Circuit
|
|
9
|
-
// Allows a user to prove knowledge of a private key that is signed up to
|
|
10
|
-
// a MACI contract.
|
|
11
|
-
template PollJoining(stateTreeDepth) {
|
|
12
|
-
// Constants defining the tree structure
|
|
13
|
-
var STATE_TREE_ARITY = 2;
|
|
14
|
-
|
|
15
|
-
// User's private key
|
|
16
|
-
signal input privKey;
|
|
17
|
-
// Poll's public key
|
|
18
|
-
signal input pollPubKey[2];
|
|
19
|
-
// Siblings
|
|
20
|
-
signal input siblings[stateTreeDepth][STATE_TREE_ARITY - 1];
|
|
21
|
-
// Indices
|
|
22
|
-
signal input indices[stateTreeDepth];
|
|
23
|
-
// User's hashed private key
|
|
24
|
-
signal input nullifier;
|
|
25
|
-
// MACI State tree root which proves the user is signed up
|
|
26
|
-
signal input stateRoot;
|
|
27
|
-
// The actual tree depth (might be <= stateTreeDepth) used in BinaryMerkleRoot
|
|
28
|
-
signal input actualStateTreeDepth;
|
|
29
|
-
// The poll id
|
|
30
|
-
signal input pollId;
|
|
31
|
-
|
|
32
|
-
// Compute the nullifier (hash of private key and poll id)
|
|
33
|
-
var computedNullifier = PoseidonHasher(2)([privKey, pollId]);
|
|
34
|
-
nullifier === computedNullifier;
|
|
35
|
-
|
|
36
|
-
// User private to public key
|
|
37
|
-
var derivedPubKey[2] = PrivToPubKey()(privKey);
|
|
38
|
-
// Hash the public key
|
|
39
|
-
var pubKeyHash = PoseidonHasher(2)([derivedPubKey[0], derivedPubKey[1]]);
|
|
40
|
-
|
|
41
|
-
// Ensure the poll public key is the same as the maci one (public input)
|
|
42
|
-
derivedPubKey[0] === pollPubKey[0];
|
|
43
|
-
derivedPubKey[1] === pollPubKey[1];
|
|
44
|
-
|
|
45
|
-
// Inclusion proof
|
|
46
|
-
var calculatedRoot = BinaryMerkleRoot(stateTreeDepth)(
|
|
47
|
-
pubKeyHash,
|
|
48
|
-
actualStateTreeDepth,
|
|
49
|
-
indices,
|
|
50
|
-
siblings
|
|
51
|
-
);
|
|
52
|
-
|
|
53
|
-
calculatedRoot === stateRoot;
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
// Poll Joined Circuit
|
|
57
|
-
// Allows a user to prove that they have joined a MACI poll.
|
|
58
|
-
// This is to be used with the MACI offchain implementation to allow
|
|
59
|
-
// users to authenticate to the relayer service (to reduce spamming).
|
|
60
|
-
template PollJoined(stateTreeDepth) {
|
|
61
|
-
// Constants defining the tree structure
|
|
62
|
-
var STATE_TREE_ARITY = 2;
|
|
63
|
-
|
|
64
|
-
// User's private key
|
|
65
|
-
signal input privKey;
|
|
66
|
-
// User's voice credits balance
|
|
67
|
-
signal input voiceCreditsBalance;
|
|
68
|
-
// Path elements
|
|
69
|
-
signal input pathElements[stateTreeDepth][STATE_TREE_ARITY - 1];
|
|
70
|
-
// Path indices
|
|
71
|
-
signal input pathIndices[stateTreeDepth];
|
|
72
|
-
// Poll State tree root which proves the user is joined
|
|
73
|
-
signal input stateRoot;
|
|
74
|
-
// The actual tree depth (might be <= stateTreeDepth) Used in BinaryMerkleRoot
|
|
75
|
-
signal input actualStateTreeDepth;
|
|
76
|
-
|
|
77
|
-
// User private to public key
|
|
78
|
-
var derivedPubKey[2] = PrivToPubKey()(privKey);
|
|
79
|
-
|
|
80
|
-
var stateLeaf = PoseidonHasher(3)([derivedPubKey[0], derivedPubKey[1], voiceCreditsBalance]);
|
|
81
|
-
|
|
82
|
-
// Inclusion proof
|
|
83
|
-
var stateLeafQip = BinaryMerkleRoot(stateTreeDepth)(
|
|
84
|
-
stateLeaf,
|
|
85
|
-
actualStateTreeDepth,
|
|
86
|
-
pathIndices,
|
|
87
|
-
pathElements
|
|
88
|
-
);
|
|
89
|
-
|
|
90
|
-
stateLeafQip === stateRoot;
|
|
91
|
-
}
|
|
92
|
-
|