-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathTest.java
232 lines (177 loc) · 7.59 KB
/
Test.java
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
import java.math.BigInteger;
import java.util.Random;
import org.bouncycastle.jce.ECNamedCurveTable;
import org.bouncycastle.jce.spec.ECNamedCurveParameterSpec;
/****************************************************************************************
* *
* Hier werden die Funktionen und die Laufzeit von Secp256k1 getestet. *
* *
*****************************************************************************************/
public class Test
{
final static int testRuns = 10; // Hier die Anzahl der Testläufe änerden!
public static byte[] rand;
public static byte[] hash;
public static byte[] priv;
private static BigInteger[] pub = new BigInteger[2];
private static BigInteger[] sig = new BigInteger[2];
public static void main(String[] args)
{
createOneSig();
allRandomTest();
}
// Erstellt und prüft eine Signatur mit vorgegebenen Parametern.
private static void createOneSig()
{
rand = hexStringToByteArray ("000aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"); // Zufall (K)
hash = hexStringToByteArray ("fff88df40bcedbe641ddb16ff0a1842d9c67ea1c3bf63f3e0471baa664531d1a"); // Hash (M)
priv = hexStringToByteArray ("fff112222233333444445555566666777778888899999aaaaabbbbbcccccdddd"); // Priv.Key
pub[0] = new BigInteger ("FF409479FF9667B49F4BEDFE3191E6078C15873012E6D05A534EA9DB6FA9736B",16); // Pub.Key x
pub[1] = new BigInteger ("4307E003C4D2E575435414970F8C971758AD64C697B1BB6EA25F9C624CF54422",16); // Pub.Key y
bouncastleSigTest();
maxwell_sigTest();
}
// Erstellt eine Signature mit bouncastle und prüft sie.
private static boolean bouncastleSigTest()
{
sig = Bouncycastle_Secp256k1.sig(hash, priv, rand);
System.out.println ("\nSignaure erstellt mit Bouncastle");
System.out.println ("Zufall (K) = "+byteArrayToHexString(rand));
System.out.println ("Hash (M) = "+byteArrayToHexString(hash));
System.out.println ("Priv.Key = "+byteArrayToHexString(priv));
System.out.print ("Pub.Key = "); print(pub);
System.out.print ("Sig. r , s = "); print(sig);
if(Bouncycastle_Secp256k1.verify(hash, sig, pub)) { System.out.println("verify_bouncycastle: true"); }
else{ System.out.println(">>>>>>>>>>>>>>>>>>>>> verify_bouncycastle, Error, signature fails!\n"); return false;}
Secp256k1 o = new Secp256k1();
if(o.verify(hash, sig, pub)) { System.out.println("verify_Maxwell: true\n"); return true;}
else{ System.out.println(">>>>>>>>>>>>>>>>>>>>> verify_Maxwell, Error, signature fails!\n"); return false;}
}
// Erstellt eine Signature mit Maxwell und prüft sie.
private static boolean maxwell_sigTest()
{
Secp256k1 g = new Secp256k1();
sig = g.sig(hash, priv, rand);
System.out.println ("\nSignaure erstellt mit Maxwell");
System.out.println ("Zufall (K) = "+byteArrayToHexString(rand));
System.out.println ("Hash (M) = "+byteArrayToHexString(hash));
System.out.println ("Priv.Key = "+byteArrayToHexString(priv));
System.out.print ("Pub.Key = "); print(pub);
System.out.print ("Sig. r , s = "); print(sig);
if(Bouncycastle_Secp256k1.verify(hash, sig, pub)) { System.out.println("verify_bouncycastle: true"); }
else{ System.out.println(">>>>>>>>>>>>>>>> verify_bouncycastle, Error, signature fails!\n"); return false;}
Secp256k1 o = new Secp256k1();
if(o.verify(hash, sig, pub)) { System.out.println("verify_Maxwell: true\n"); return true;}
else{ System.out.println(">>>>>>>>>>>>>>>>>>>>> verify_Maxwell, Error, signature fails!\n"); return false;}
}
// Testet alle Funktionen in einem Random Test.
private static void allRandomTest()
{
priv = hexStringToByteArray ("111112222233333444445555566666777778888899999aaaaabbbbbcccccdddd"); // Priv.Key
pub[0] = new BigInteger ("CAD5E868FC3437CB26423166631D6DA9185991D37252AA6A5C898956BF288AA2",16); // Pub.Key x
pub[1] = new BigInteger ("E5866FE1B7A9E0DB979F48A118B987148E97C50F76F585FAFD2D2A791164C74F",16); // Pub.Key y
for(int i = 0; i<testRuns; i++)
{
Random k = new Random();
rand = (new BigInteger(256, k)).toByteArray();
Random h = new Random();
hash = (new BigInteger(256, h)).toByteArray();
hash = Secp256k1.to_fixLength(hash,32);
if(bouncastleSigTest() == false) break;
if(maxwell_sigTest() == false) break;
}
VergleichsTest();
secp256k1_speed_Test(); // 3,0ms
}
// Haupt Vergleichs Test mit Zeit messung
// Vergleicht in einer Random Schleife die Ergebnisse mit der offiziellen Secp256k1 Funktion auf Richtigkeit
// und misst die Laufzeit.
private static void VergleichsTest()
{
Secp256k1 g = new Secp256k1();
BigInteger[] NULL= new BigInteger[2];
NULL[0] = BigInteger.ZERO;
NULL[1] = BigInteger.ZERO;
BigInteger[] pubK1 = new BigInteger[2];
BigInteger[] pubK2 = new BigInteger[2];
long msec = 0;
long t0 = System.currentTimeMillis();
for(int i=0; i<testRuns; i++)
{
t0 = System.currentTimeMillis();
Random rn = new Random();
BigInteger priK = new BigInteger(255,rn);
pubK1 = g.multiply_G(priK);
String b = pubK1[0].toString(16);
System.out.printf("\nPublic Key: %S",b);
pubK2 = getPublicKeyOriginal(priK);
b = pubK2[0].toString(16);
System.out.printf("\nPublic Key: %S\n",b);
if(pubK1[0].equals(pubK2[0])) System.out.println("correct!");
else {System.out.println(" >>>>>>>>>>>>>>>>>> Not correct! Schlüssel sind nicht gleich! <<<<<<<<<<<<"); break;}
System.out.printf("Zeit: %d ms\n", msec);
msec = System.currentTimeMillis()-t0;
}
}
// aktuell 3,22 ms
private static void secp256k1_speed_Test()
{
System.out.println("\nRun Benchmarks . . .");
Secp256k1 g = new Secp256k1();
BigInteger[] pubK1 = new BigInteger[2];
Random rn = new Random();
BigInteger priK = new BigInteger(255,rn);
long t = System.currentTimeMillis();
for(int i=0; i<testRuns; i++) pubK1 = g.multiply_G(priK);
t = System.currentTimeMillis()-t;
print(pubK1);
System.out.println("\n\nZeit: "+t*1000/testRuns +"µs");
}
// Original Funktion der Secp256K1 Bibliothek! Zum Verkleichstest.
private static BigInteger[] getPublicKeyOriginal(BigInteger in)
{
ECNamedCurveParameterSpec spec = ECNamedCurveTable.getParameterSpec("secp256k1");
byte[] pubKey = spec.getG().multiply(in).getEncoded(false);
byte[] a = new byte[32];
byte[] b = new byte[32];
System.arraycopy(pubKey, 1, a, 0, 32);
System.arraycopy(pubKey, 33, b, 0, 32);
BigInteger[] erg = new BigInteger[2];
erg[0] = new BigInteger(1,a);
erg[1] = new BigInteger(1,b);
return erg;
}
// Gibt den Punkt x,y in HEX auf der Konsole aus
static void print(BigInteger[] P)
{
String a = P[0].toString(16);
String b = P[1].toString(16);
System.out.printf(" |%S|",a);
System.out.printf(" |%S| \n",b);
}
// Hexa String wird in ein Byte Array konvertiert
public static byte[] hexStringToByteArray(String hex)
{
if((hex.length()%2)==1) // Falls die Länge des Strings ungerade ist, wird eine 1 angehängt
{
char c = '1';
hex += c;
System.out.println("Fehler in Convert.hexStringToByteArray: Ungerade String-Zeichenfolge!");
}
int l = hex.length();
byte[] data = new byte[l/2];
for (int i = 0; i < l; i += 2)
{
data[i/2] = (byte) ((Character.digit(hex.charAt(i), 16) << 4) + Character.digit(hex.charAt(i+1), 16));
}
return data;
}
// Byte Array wird in einen Hexa String konvertiert
public static String byteArrayToHexString(byte[] a)
{
StringBuilder sb = new StringBuilder(a.length * 2);
for(byte b: a)
sb.append(String.format("%02x", b));
return sb.toString();
}
}