-
Notifications
You must be signed in to change notification settings - Fork 9
/
saver.spec.ts
204 lines (171 loc) · 8.42 KB
/
saver.spec.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
import {
CompositeProof,
dockSaverEncryptionGensUncompressed,
encodeRevealedMsgs,
getAdaptedSignatureParamsForMessages,
getIndicesForMsgNames,
getRevealedAndUnrevealed,
initializeWasm,
MetaStatements,
QuasiProofSpec,
SaverChunkedCommitmentKey,
SaverDecryptionKeyUncompressed,
SaverDecryptor,
SaverEncryptionGens,
SaverEncryptionKeyUncompressed,
SaverProvingKeyUncompressed,
SaverSecretKey,
SaverVerifyingKeyUncompressed,
Statement,
Statements,
Witness,
WitnessEqualityMetaStatement,
Witnesses
} from '../../../src';
import { adaptKeyForParams, buildWitness, Scheme, Signature } from '../../scheme';
import {
checkResult,
getBoundCheckSnarkKeys,
getParamsAndKeys,
readByteArrayFromFile,
stringToBytes
} from '../../utils';
import { attributes1, attributes1Struct, GlobalEncoder } from './data-and-encoder';
import { checkMapsEqual } from './index';
import { proverStmt, signAndVerify, verifierStmt } from './util';
describe(`${Scheme} Verifiable encryption using SAVER`, () => {
beforeAll(async () => {
// Load the WASM module
await initializeWasm();
});
// Setting it to false will make the test run the SNARK setups making tests quite slow
const loadSnarkSetupFromFiles = true;
it('signing and proof of knowledge of signature, verifiable encryption and range proof', () => {
// This test check in addition to proof of knowledge of signature, one of the attribute is verifiably encrypted for a
// 3rd-party and a proof that an attribute satisfies bounds (range proof) can also be created.
const label = stringToBytes('Sig params label - this is public');
// Message count shouldn't matter as `label` is known
const [params, sk, pk] = getParamsAndKeys(100, label);
const signed = signAndVerify(attributes1, GlobalEncoder, label, sk, pk);
// Setup for decryptor
let saverEncGens, saverSk, saverProvingKey, saverVerifyingKey, saverEk, saverDk;
const chunkBitSize = 16;
if (loadSnarkSetupFromFiles && chunkBitSize === 16) {
saverSk = new SaverSecretKey(readByteArrayFromFile('snark-setups/saver-secret-key-16.bin'));
saverEncGens = dockSaverEncryptionGensUncompressed();
saverProvingKey = new SaverProvingKeyUncompressed(
readByteArrayFromFile('snark-setups/saver-proving-key-16-uncompressed.bin')
);
saverVerifyingKey = new SaverVerifyingKeyUncompressed(
readByteArrayFromFile('snark-setups/saver-verifying-key-16-uncompressed.bin')
);
saverEk = new SaverEncryptionKeyUncompressed(
readByteArrayFromFile('snark-setups/saver-encryption-key-16-uncompressed.bin')
);
saverDk = new SaverDecryptionKeyUncompressed(
readByteArrayFromFile('snark-setups/saver-decryption-key-16-uncompressed.bin')
);
} else {
const encGens = SaverEncryptionGens.generate();
// `chunkBitSize` is optional, it will default to reasonable good value.
let [saverSnarkPk, saverSk, encryptionKey, decryptionKey] = SaverDecryptor.setup(encGens, chunkBitSize);
saverEncGens = encGens.decompress();
saverProvingKey = saverSnarkPk.decompress();
saverVerifyingKey = saverSnarkPk.getVerifyingKeyUncompressed();
saverEk = encryptionKey.decompress();
saverDk = decryptionKey.decompress();
console.info('Saver setup done');
}
// Verifier creates SNARK proving and verification key
const [boundCheckProvingKey, boundCheckVerifyingKey] = getBoundCheckSnarkKeys(loadSnarkSetupFromFiles);
console.info('Bound check setup done');
// The lower and upper bounds of attribute "timeOfBirth"
const timeMin = 1662010819619;
const timeMax = 1662011149654;
// Verifier creates these parameters
const gens = SaverChunkedCommitmentKey.generate(stringToBytes('some label'));
const commKey = gens.decompress();
// Reveal first name ("fname" attribute), last name ("lname") and country
// Prove that "SSN" is verifiably encrypted
// Prove that "timeOfBirth" satisfies the given bounds in zero knowledge, i.e. without revealing timeOfBirth
const revealedNames = new Set<string>();
revealedNames.add('fname');
revealedNames.add('lname');
revealedNames.add('country');
// Both prover and verifier can independently create this struct
const sigParams = getAdaptedSignatureParamsForMessages(params, attributes1Struct);
const sigPk = adaptKeyForParams(pk, sigParams);
const [revealedMsgs, unrevealedMsgs, revealedMsgsRaw] = getRevealedAndUnrevealed(
attributes1,
revealedNames,
GlobalEncoder
);
expect(revealedMsgsRaw).toEqual({ fname: 'John', lname: 'Smith', country: 'USA' });
const statement1 = proverStmt(
sigParams,
revealedMsgs,
sigPk
);
const statement2 = Statement.saverProver(saverEncGens, commKey, saverEk, saverProvingKey, chunkBitSize);
const statement3 = Statement.boundCheckLegoProver(timeMin, timeMax, boundCheckProvingKey);
const statementsProver = new Statements();
const sIdx1 = statementsProver.add(statement1);
const sIdx2 = statementsProver.add(statement2);
const sIdx3 = statementsProver.add(statement3);
const metaStmtsProver = new MetaStatements();
const witnessEq1 = new WitnessEqualityMetaStatement();
witnessEq1.addWitnessRef(sIdx1, getIndicesForMsgNames(['SSN'], attributes1Struct)[0]);
witnessEq1.addWitnessRef(sIdx2, 0);
const witnessEq2 = new WitnessEqualityMetaStatement();
witnessEq2.addWitnessRef(sIdx1, getIndicesForMsgNames(['timeOfBirth'], attributes1Struct)[0]);
witnessEq2.addWitnessRef(sIdx3, 0);
metaStmtsProver.addWitnessEquality(witnessEq1);
metaStmtsProver.addWitnessEquality(witnessEq2);
// The prover should independently construct this `ProofSpec`
const proofSpecProver = new QuasiProofSpec(statementsProver, metaStmtsProver);
const witness1 = buildWitness(signed.signature, unrevealedMsgs, false);
const witness2 = Witness.saver(signed.encodedMessages['SSN']);
const witness3 = Witness.boundCheckLegoGroth16(signed.encodedMessages['timeOfBirth']);
const witnesses = new Witnesses(witness1);
witnesses.add(witness2);
witnesses.add(witness3);
const proof = CompositeProof.generateUsingQuasiProofSpec(proofSpecProver, witnesses);
// Verifier independently encodes revealed messages
const revealedMsgsFromVerifier = encodeRevealedMsgs(revealedMsgsRaw, attributes1Struct, GlobalEncoder);
checkMapsEqual(revealedMsgs, revealedMsgsFromVerifier);
const statement4 = verifierStmt(
sigParams,
revealedMsgsFromVerifier,
sigPk
);
const statement5 = Statement.saverVerifier(saverEncGens, commKey, saverEk, saverVerifyingKey, chunkBitSize);
const statement6 = Statement.boundCheckLegoVerifier(timeMin, timeMax, boundCheckVerifyingKey);
const verifierStatements = new Statements();
const sIdx4 = verifierStatements.add(statement4);
const sIdx5 = verifierStatements.add(statement5);
const sIdx6 = verifierStatements.add(statement6);
const metaStmtsVerifier = new MetaStatements();
const witnessEq3 = new WitnessEqualityMetaStatement();
witnessEq3.addWitnessRef(sIdx4, getIndicesForMsgNames(['SSN'], attributes1Struct)[0]);
witnessEq3.addWitnessRef(sIdx5, 0);
const witnessEq4 = new WitnessEqualityMetaStatement();
witnessEq4.addWitnessRef(sIdx4, getIndicesForMsgNames(['timeOfBirth'], attributes1Struct)[0]);
witnessEq4.addWitnessRef(sIdx6, 0);
metaStmtsVerifier.addWitnessEquality(witnessEq3);
metaStmtsVerifier.addWitnessEquality(witnessEq4);
const verifierProofSpec = new QuasiProofSpec(verifierStatements, metaStmtsVerifier);
checkResult(proof.verifyUsingQuasiProofSpec(verifierProofSpec));
// Verifier extracts the ciphertext
const ciphertext = proof.getSaverCiphertext(sIdx5);
// Decryptor gets the ciphertext from the verifier and decrypts it
const decrypted = SaverDecryptor.decryptCiphertext(ciphertext, saverSk, saverDk, saverVerifyingKey, chunkBitSize);
expect(decrypted.message).toEqual(signed.encodedMessages['SSN']);
// Decryptor shares the decryption result with verifier which the verifier can check for correctness.
expect(
ciphertext.verifyDecryption(decrypted, saverDk, saverVerifyingKey, saverEncGens, chunkBitSize).verified
).toEqual(true);
// Message can be successfully decoded to the original string
const decoded = Signature.reversibleDecodeStringForSigning(signed.encodedMessages['SSN']);
expect(decoded).toEqual(attributes1['SSN']);
});
});