-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathEdDSA.cs
More file actions
320 lines (257 loc) · 10.5 KB
/
EdDSA.cs
File metadata and controls
320 lines (257 loc) · 10.5 KB
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
using System;
using System.IO;
using System.Numerics;
using Waher.Runtime.Temporary;
namespace Waher.Security.EllipticCurves
{
/// <summary>
/// Implements the Edwards curve Digital Signature Algorithm (EdDSA), as defined in RFC 8032.
/// https://tools.ietf.org/html/rfc8032
/// </summary>
public static class EdDSA
{
/// <summary>
/// Signs data using the EdDSA algorithm.
/// </summary>
/// <param name="Data">Data to be signed.</param>
/// <param name="BigEndian">If the encoded point should be in big-endian format.</param>
/// <param name="PrivateKey">Private key.</param>
/// <param name="Prefix">Prefix</param>
/// <param name="HashFunction">Hash function to use</param>
/// <param name="Curve">Elliptic curve</param>
/// <returns>Signature</returns>
public static byte[] Sign(byte[] Data, bool BigEndian, byte[] PrivateKey, byte[] Prefix,
HashFunctionArray HashFunction, EdwardsCurveBase Curve)
{
// 5.1.6 of RFC 8032
int ScalarBytes = PrivateKey.Length;
if (Prefix.Length != ScalarBytes)
throw new ArgumentException("Invalid prefix.", nameof(Prefix));
BigInteger a = EllipticCurve.ToInt(PrivateKey);
PointOnCurve P = Curve.ScalarMultiplication(PrivateKey, Curve.BasePoint, true);
byte[] A = Encode(P, BigEndian, Curve);
int c = Data.Length;
byte[] Bin = new byte[ScalarBytes + c]; // dom2(F, C) = blank string
Buffer.BlockCopy(Prefix, 0, Bin, 0, ScalarBytes); // prefix
Buffer.BlockCopy(Data, 0, Bin, ScalarBytes, c); // PH(M)=M
byte[] h = HashFunction(Bin);
BigInteger r = BigInteger.Remainder(EllipticCurve.ToInt(h), Curve.Order);
PointOnCurve R = Curve.ScalarMultiplication(r, Curve.BasePoint, true);
byte[] Rs = Encode(R, BigEndian, Curve);
Bin = new byte[(ScalarBytes << 1) + c]; // dom2(F, C) = blank string
Buffer.BlockCopy(Rs, 0, Bin, 0, ScalarBytes);
Buffer.BlockCopy(A, 0, Bin, ScalarBytes, ScalarBytes);
Buffer.BlockCopy(Data, 0, Bin, ScalarBytes << 1, c); // PH(M)=M
h = HashFunction(Bin);
BigInteger k = BigInteger.Remainder(EllipticCurve.ToInt(h), Curve.Order);
BigInteger s = Curve.ModulusN.Add(r, Curve.ModulusN.Multiply(k, a));
Bin = s.ToByteArray();
if (Bin.Length != ScalarBytes)
Array.Resize(ref Bin, ScalarBytes);
byte[] Signature = new byte[ScalarBytes << 1];
Buffer.BlockCopy(Rs, 0, Signature, 0, ScalarBytes);
Buffer.BlockCopy(Bin, 0, Signature, ScalarBytes, ScalarBytes);
return Signature;
}
/// <summary>
/// Signs data using the EdDSA algorithm.
/// </summary>
/// <param name="Data">Data to be signed.</param>
/// <param name="BigEndian">If the encoded point should be in big-endian format.</param>
/// <param name="PrivateKey">Private key.</param>
/// <param name="Prefix">Prefix</param>
/// <param name="HashFunction">Hash function to use</param>
/// <param name="Curve">Elliptic curve</param>
/// <returns>Signature</returns>
public static byte[] Sign(Stream Data, bool BigEndian, byte[] PrivateKey,
byte[] Prefix, HashFunctionStream HashFunction, EdwardsCurveBase Curve)
{
// 5.1.6 of RFC 8032
int ScalarBytes = PrivateKey.Length;
if (Prefix.Length != ScalarBytes)
throw new ArgumentException("Invalid prefix.", nameof(Prefix));
BigInteger a = EllipticCurve.ToInt(PrivateKey);
PointOnCurve P = Curve.ScalarMultiplication(PrivateKey, Curve.BasePoint, true);
byte[] A = Encode(P, BigEndian, Curve);
byte[] h;
using (TemporaryStream TempFile = new TemporaryStream()) // dom2(F, C) = blank string
{
TempFile.Write(Prefix, 0, ScalarBytes); // prefix
Data.Position = 0;
Data.CopyTo(TempFile); // PH(M)=M
TempFile.Position = 0;
h = HashFunction(TempFile);
}
BigInteger r = BigInteger.Remainder(EllipticCurve.ToInt(h), Curve.Order);
PointOnCurve R = Curve.ScalarMultiplication(r, Curve.BasePoint, true);
byte[] Rs = Encode(R, BigEndian, Curve);
using (TemporaryStream TempFile = new TemporaryStream()) // dom2(F, C) = blank string
{
TempFile.Write(Rs, 0, ScalarBytes);
TempFile.Write(A, 0, ScalarBytes);
Data.Position = 0;
Data.CopyTo(TempFile); // PH(M)=M
TempFile.Position = 0;
h = HashFunction(TempFile);
}
BigInteger k = BigInteger.Remainder(EllipticCurve.ToInt(h), Curve.Order);
BigInteger s = Curve.ModulusN.Add(r, Curve.ModulusN.Multiply(k, a));
byte[] Bin = s.ToByteArray();
if (Bin.Length != ScalarBytes)
Array.Resize(ref Bin, ScalarBytes);
byte[] Signature = new byte[ScalarBytes << 1];
Buffer.BlockCopy(Rs, 0, Signature, 0, ScalarBytes);
Buffer.BlockCopy(Bin, 0, Signature, ScalarBytes, ScalarBytes);
return Signature;
}
/// <summary>
/// Encodes a point on the curve in accordance with §5.1.2 of RFC 8032.
/// </summary>
/// <param name="P">Point</param>
/// <param name="BigEndian">If the encoded point should be in big-endian format.</param>
/// <param name="Curve">Edwards curve.</param>
/// <returns>Encoding</returns>
public static byte[] Encode(PointOnCurve P, bool BigEndian, EdwardsCurveBase Curve)
{
int ScalarBits = Curve.CoordinateBits;
int ScalarBytes = (ScalarBits + 9) >> 3;
byte[] y = P.Y.ToByteArray(); // Little endian
if (y.Length != ScalarBytes)
Array.Resize(ref y, ScalarBytes);
byte[] x = P.X.ToByteArray(); // Little endian
int Msb = (ScalarBits + 1) & 7;
byte Mask = (byte)(0xff >> (8 - Msb));
y[ScalarBytes - 1] &= Mask;
if ((x[0] & 1) != 0)
y[ScalarBytes - 1] |= 0x80; // Always MSB
if (BigEndian)
Array.Reverse(y);
return y;
}
/// <summary>
/// Decodes a point on the curve in accordance with §5.1.3 of RFC 8032.
/// </summary>
/// <param name="Encoded">Encoded point.</param>
/// <param name="BigEndian">If the encoded point is in big-endian format.</param>
/// <param name="Curve">Elliptic curve</param>
/// <returns>Point on curve.</returns>
public static PointOnCurve Decode(byte[] Encoded, bool BigEndian, EdwardsCurveBase Curve)
{
int ScalarBits = Curve.CoordinateBits;
int ScalarBytes = (ScalarBits + 9) >> 3;
if (Encoded.Length != ScalarBytes)
throw new ArgumentException("Not encoded properly.", nameof(Encoded));
if (BigEndian)
{
Encoded = (byte[])Encoded.Clone();
Array.Reverse(Encoded);
}
bool x0 = (Encoded[ScalarBytes - 1] & 0x80) != 0;
if (x0)
Encoded[ScalarBytes - 1] &= 0x7f;
BigInteger y = EllipticCurve.ToInt(Encoded);
if (y >= Curve.Prime)
throw new ArgumentException("Not a valid point.", nameof(Encoded));
if (x0)
Encoded[ScalarBytes - 1] |= 0x80;
BigInteger x = Curve.GetX(y, x0);
return new PointOnCurve(x, y);
}
/// <summary>
/// Verifies a signature of <paramref name="Data"/> made by the EdDSA algorithm.
/// </summary>
/// <param name="Data">Payload to sign.</param>
/// <param name="PublicKey">Public Key of the entity that generated the signature.</param>
/// <param name="BigEndian">If the encoded point is in big-endian format.</param>
/// <param name="HashFunction">Hash function to use.</param>
/// <param name="Curve">Elliptic curve</param>
/// <param name="Signature">Signature</param>
/// <returns>If the signature is valid.</returns>
public static bool Verify(byte[] Data, byte[] PublicKey, bool BigEndian, HashFunctionArray HashFunction,
EdwardsCurveBase Curve, byte[] Signature)
{
try
{
int ScalarBytes = Signature.Length;
if ((ScalarBytes & 1) != 0)
return false;
ScalarBytes >>= 1;
byte[] R = new byte[ScalarBytes];
Buffer.BlockCopy(Signature, 0, R, 0, ScalarBytes);
PointOnCurve r = Decode(R, BigEndian, Curve);
byte[] S = new byte[ScalarBytes];
Buffer.BlockCopy(Signature, ScalarBytes, S, 0, ScalarBytes);
BigInteger s = EllipticCurve.ToInt(S);
if (s >= Curve.Order)
return false;
int c = Data.Length;
byte[] Bin = new byte[(ScalarBytes << 1) + c]; // dom2(F, C) = blank string
Buffer.BlockCopy(R, 0, Bin, 0, ScalarBytes);
Buffer.BlockCopy(PublicKey, 0, Bin, ScalarBytes, ScalarBytes);
Buffer.BlockCopy(Data, 0, Bin, ScalarBytes << 1, c); // PH(M)=M
byte[] h = HashFunction(Bin);
BigInteger k = BigInteger.Remainder(EllipticCurve.ToInt(h), Curve.Order);
PointOnCurve P1 = Curve.ScalarMultiplication(s, Curve.BasePoint, false);
PointOnCurve P2 = Curve.ScalarMultiplication(k, Curve.Decode(PublicKey, BigEndian), false);
Curve.AddTo(ref P2, r);
P1.Normalize(Curve);
P2.Normalize(Curve);
return P1.Equals(P2);
}
catch (ArgumentException)
{
return false;
}
}
/// <summary>
/// Verifies a signature of <paramref name="Data"/> made by the EdDSA algorithm.
/// </summary>
/// <param name="Data">Payload to sign.</param>
/// <param name="PublicKey">Public Key of the entity that generated the signature.</param>
/// <param name="BigEndian">If the encoded point is in big-endian format.</param>
/// <param name="HashFunction">Hash function to use.</param>
/// <param name="Curve">Elliptic curve</param>
/// <param name="Signature">Signature</param>
/// <returns>If the signature is valid.</returns>
public static bool Verify(Stream Data, byte[] PublicKey, bool BigEndian,
HashFunctionStream HashFunction, EdwardsCurveBase Curve, byte[] Signature)
{
try
{
int ScalarBytes = Signature.Length;
if ((ScalarBytes & 1) != 0)
return false;
ScalarBytes >>= 1;
byte[] R = new byte[ScalarBytes];
Buffer.BlockCopy(Signature, 0, R, 0, ScalarBytes);
PointOnCurve r = Decode(R, BigEndian, Curve);
byte[] S = new byte[ScalarBytes];
Buffer.BlockCopy(Signature, ScalarBytes, S, 0, ScalarBytes);
BigInteger s = EllipticCurve.ToInt(S);
byte[] h;
if (s >= Curve.Order)
return false;
using (TemporaryStream TempFile = new TemporaryStream()) // dom2(F, C) = blank string
{
TempFile.Write(R, 0, ScalarBytes);
TempFile.Write(PublicKey, 0, ScalarBytes);
Data.Position = 0;
Data.CopyTo(TempFile); // PH(M)=M
TempFile.Position = 0;
h = HashFunction(TempFile);
}
BigInteger k = BigInteger.Remainder(EllipticCurve.ToInt(h), Curve.Order);
PointOnCurve P1 = Curve.ScalarMultiplication(s, Curve.BasePoint, false);
PointOnCurve P2 = Curve.ScalarMultiplication(k, Curve.Decode(PublicKey, BigEndian), false);
Curve.AddTo(ref P2, r);
P1.Normalize(Curve);
P2.Normalize(Curve);
return P1.Equals(P2);
}
catch (ArgumentException)
{
return false;
}
}
}
}