-
Notifications
You must be signed in to change notification settings - Fork 1
/
VerifiableSecretShare.cs
398 lines (336 loc) · 13.4 KB
/
VerifiableSecretShare.cs
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
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
using System.Text;
using Org.BouncyCastle.Asn1.X9;
using Org.BouncyCastle.Crypto.Digests;
using Org.BouncyCastle.Crypto.Generators;
using Org.BouncyCastle.Crypto.Parameters;
using Org.BouncyCastle.Math;
using Org.BouncyCastle.Math.EC;
using Org.BouncyCastle.Security;
namespace TripleRatchet
{
public class VerifiableSecretShare
{
private X9ECParameters _curve;
private int _threshold;
private int _total;
private ECDomainParameters _param;
private ECPoint _point;
private SecureRandom _random;
private ECKeyPairGenerator _keyPairGenerator;
private int _id;
private BigInteger _myScalar;
private Dictionary<int, byte[]> _fragmentsForCounterparties;
private ECPoint? _myPoint;
private BigInteger? _zkPoK;
private ECPoint? _randomCommitment;
private Dictionary<int, byte[]>? _counterpartyCommitments;
public BigInteger SecretScalar { get; init; }
public ECPoint? PublicKey { get; set; }
public Round State { get; set; }
public VerifiableSecretShare(
X9ECParameters curve,
ECPoint point,
BigInteger secretScalar,
int threshold,
int total,
int id
)
{
this._curve = curve;
this._threshold = threshold;
this._id = id;
this._total = total;
this.SecretScalar = secretScalar;
this._param = new ECDomainParameters(
curve.Curve,
curve.G,
curve.N,
curve.H,
curve.GetSeed()
);
this._point = point;
if (!point.Curve.Equals(this._curve.Curve))
{
throw new ArgumentException("Curve mismatched");
}
this._random = new SecureRandom();
this._keyPairGenerator = new ECKeyPairGenerator();
this._keyPairGenerator.Init(
new ECKeyGenerationParameters(this._param, this._random)
);
var coefficients = new List<BigInteger>(threshold);
coefficients.Add(secretScalar);
for (var i = 0; i < threshold - 1; i++)
{
var pair = this._keyPairGenerator.GenerateKeyPair();
coefficients.Add(((ECPrivateKeyParameters)(pair.Private)).D);
}
this._myScalar = BigInteger.Zero;
this._fragmentsForCounterparties = new Dictionary<int, byte[]>();
for (var i = 1; i <= total; i++)
{
var fragment = coefficients.Last();
for (var j = coefficients.Count() - 2; j >= 0; j--)
{
// y = 3x^4 + 7x^3 + 8x^2 + 9x + 234
fragment = fragment.Multiply(new BigInteger(i.ToString()))
.Add(coefficients[j]);
}
if (i == this._id)
{
this._myScalar = fragment;
}
else
{
this._fragmentsForCounterparties[i] =
Encoding.UTF8.GetBytes(fragment.ToString());
}
}
this.State = Round.Initialized;
}
public Dictionary<int, byte[]> SendFragments()
{
return this._fragmentsForCounterparties;
}
public Dictionary<int, byte[]> SendProofCommitments(
Dictionary<int, byte[]> read
)
{
for (var i = 1; i <= this._total; i++)
{
if (i != this._id)
{
Console.WriteLine(
$"received frags (len={read[i].Length}) from {i} " +
$"to {this._id}");
var fragment = new BigInteger(
Encoding.UTF8.GetString(read[i]));
this._myScalar = this._myScalar.Add(fragment);
}
}
// challenge = H(myPoint||randomECPoint)
this._myPoint = this._point.Multiply(this._myScalar).Normalize();
var ecCommitment = this._keyPairGenerator.GenerateKeyPair();
var ecCommitmentScalar = ((ECPrivateKeyParameters)
(ecCommitment.Private)).D;
var ecCommitmentPoint = (this._point.Multiply(ecCommitmentScalar));
var digest = new Sha3Digest();
var myPointConcatRandomECPoint = this._myPoint.GetEncoded().Concat(
ecCommitmentPoint.GetEncoded()
).ToArray();
var challenge = new byte[digest.GetDigestSize()];
digest.BlockUpdate(
myPointConcatRandomECPoint,
0,
myPointConcatRandomECPoint.Length);
digest.DoFinal(challenge, 0);
// z = myScalar * challenge + randomECScalar
var zkPoK = this._myScalar.Multiply(new BigInteger(challenge))
.Add(ecCommitmentScalar);
// commitments = H(randomECPoint||z)
digest = new Sha3Digest();
var randomECPointConcatZKPoK =
ecCommitmentPoint.GetEncoded()
.Concat(Encoding.UTF8.GetBytes(zkPoK.ToString())).ToArray();
var commitment = new byte[digest.GetDigestSize()];
digest.BlockUpdate(
randomECPointConcatZKPoK,
0,
randomECPointConcatZKPoK.Length);
digest.DoFinal(commitment, 0);
this._zkPoK = zkPoK;
this._randomCommitment = ecCommitmentPoint;
var send = new Dictionary<int, byte[]>();
for (var i = 1; i <= this._total; i++)
{
if (i != this._id)
{
send[i] = commitment;
}
}
return send;
}
public Dictionary<int, byte[]> SendPointsWithProof(
Dictionary<int, byte[]> read
)
{
this._counterpartyCommitments = new Dictionary<int, byte[]>();
for (int i = 1; i <= this._total; i++)
{
if (i != this._id)
{
this._counterpartyCommitments[i] = read[i];
}
}
var send = new Dictionary<int, byte[]>();
for (int i = 1; i <= this._total; i++)
{
if (i != this._id)
{
send[i] = this._myPoint!.GetEncoded().Concat(
this._randomCommitment!.GetEncoded()
).Concat(
Encoding.UTF8.GetBytes(this._zkPoK!.ToString())
).ToArray();
}
}
return send;
}
public void Reconstruct(Dictionary<int, byte[]> read)
{
var points = new List<ECPoint>();
for (var i = 1; i < this._total; i++)
{
if (this._id == i)
{
points.Add(this._myPoint!);
}
else
{
var counterpartyPoint =
new byte[this._myPoint!.GetEncoded().Length];
var counterpartyECCommitment =
new byte[this._myPoint.GetEncoded().Length];
var counterpartyZKPoK =
new byte[
read[i].Length - (counterpartyPoint.Length * 2)
];
counterpartyPoint = read[i].Take(counterpartyPoint.Length)
.ToArray();
counterpartyECCommitment = read[i]
.Skip(counterpartyPoint.Length)
.Take(counterpartyPoint.Length).ToArray();
counterpartyZKPoK = read[i]
.Skip(counterpartyPoint.Length * 2).ToArray();
points
.Add(this._param.Curve.DecodePoint(counterpartyPoint));
var digest = new Sha3Digest();
var counterpartyPointConcatRandomECPoint =
counterpartyPoint.Concat(counterpartyECCommitment)
.ToArray();
var challenge = new byte[digest.GetDigestSize()];
digest.BlockUpdate(
counterpartyPointConcatRandomECPoint,
0,
counterpartyPointConcatRandomECPoint.Length);
digest.DoFinal(challenge, 0);
var proof = this._point.Multiply(
new BigInteger(
Encoding.UTF8.GetString(counterpartyZKPoK)
)
);
// z = myScalar * challenge + randomECScalar
var check = this._param.Curve
.DecodePoint(counterpartyECCommitment)
.Add(
this._param.Curve.DecodePoint(counterpartyPoint)
.Multiply(new BigInteger(challenge))
);
if (!proof.Equals(check))
{
Console.WriteLine($"Party {i} send invalid ZKPoK");
return;
}
digest = new Sha3Digest();
var verifier = new byte[digest.GetDigestSize()];
var cpECPConcatZKPoK = counterpartyECCommitment.Concat(
counterpartyZKPoK
).ToArray();
digest.BlockUpdate(
cpECPConcatZKPoK,
0,
cpECPConcatZKPoK.Length);
digest.DoFinal(verifier, 0);
if (!verifier
.SequenceEqual(this._counterpartyCommitments![i]))
{
Console.WriteLine($"Party {i} send false commitment");
}
}
}
this.PublicKey = this._curve.Curve.Infinity;
for (var i = 0; i < this._total - this._threshold - 1; i++)
{
var reconstructedSum = this._curve.Curve.Infinity;
for (var j = 0; j < this._threshold; j++)
{
var coefficientNumerator = BigInteger.One;
var coefficientDenominator = BigInteger.One;
for (var k = 0; k < this._threshold; k++)
{
if (j != k)
{
coefficientNumerator = coefficientNumerator
.Multiply(
new BigInteger((i + k + 1).ToString())
);
coefficientDenominator = coefficientDenominator
.Multiply(
new BigInteger((i + k + 1).ToString())
.Subtract(new BigInteger(
(i + j + 1).ToString()
)
)
);
}
}
var reconstructedFragment = points[i + j].Multiply(
coefficientNumerator.Divide(coefficientDenominator)
);
if (reconstructedSum.IsInfinity)
{
reconstructedSum = reconstructedFragment;
}
else
{
reconstructedSum = reconstructedSum.Add(
reconstructedFragment
);
}
}
if (this.PublicKey.IsInfinity)
{
this.PublicKey = reconstructedSum.Normalize();
}
else if (!this.PublicKey.Equals(reconstructedSum.Normalize()))
{
this.PublicKey = this._curve.Curve.Infinity;
Console.WriteLine($"Key mismatch");
}
}
}
public Dictionary<int, byte[]> Next(Dictionary<int, byte[]> read)
{
var output = new Dictionary<int, byte[]>();
switch (this.State)
{
case Round.Initialized:
output = this.SendFragments();
this.State = Round.SendFragments;
break;
case Round.SendFragments:
output = this.SendProofCommitments(read);
this.State = Round.SendProofCommitments;
break;
case Round.SendProofCommitments:
output = this.SendPointsWithProof(read);
this.State = Round.SendPointsWithProof;
break;
case Round.SendPointsWithProof:
this.Reconstruct(read);
this.State = Round.Ready;
break;
}
return output;
}
public enum Round
{
Initialized,
SendFragments,
SendProofCommitments,
SendPointsWithProof,
Reconstruct,
Ready,
}
}
}