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
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
|
package cz.crcs.ectester.standalone.libs.jni;
import cz.crcs.ectester.common.util.ECUtil;
import java.io.ByteArrayOutputStream;
import java.security.*;
import java.security.interfaces.ECPrivateKey;
import java.security.interfaces.ECPublicKey;
import java.security.spec.ECParameterSpec;
/**
* @author Jan Jancar johny@neuromancer.sk
*/
public abstract class NativeSignatureSpi extends SignatureSpi {
ECPublicKey verifyKey;
ECPrivateKey signKey;
ECParameterSpec params;
ByteArrayOutputStream buffer = new ByteArrayOutputStream();
@Override
protected void engineInitVerify(PublicKey publicKey) throws InvalidKeyException {
if (!(publicKey instanceof ECPublicKey)) {
throw new InvalidKeyException
("Key must be an instance of ECPublicKey");
}
verifyKey = (ECPublicKey) publicKey;
params = verifyKey.getParams();
buffer.reset();
}
@Override
protected void engineInitSign(PrivateKey privateKey) throws InvalidKeyException {
if (!(privateKey instanceof ECPrivateKey)) {
throw new InvalidKeyException
("Key must be an instance of ECPrivateKey");
}
signKey = (ECPrivateKey) privateKey;
params = signKey.getParams();
buffer.reset();
}
@Override
protected void engineUpdate(byte b) throws SignatureException {
buffer.write(b);
}
@Override
protected void engineUpdate(byte[] b, int off, int len) throws SignatureException {
buffer.write(b, off, len);
}
@Override
@Deprecated
protected void engineSetParameter(String param, Object value) throws InvalidParameterException {
throw new UnsupportedOperationException("setParameter() not supported");
}
@Override
@Deprecated
protected Object engineGetParameter(String param) throws InvalidParameterException {
throw new UnsupportedOperationException("getParameter() not supported");
}
private abstract static class SimpleSignatureSpi extends NativeSignatureSpi {
@Override
protected byte[] engineSign() throws SignatureException {
byte[] privkey;
if (signKey instanceof NativeECPrivateKey) {
privkey = ((NativeECPrivateKey) signKey).getData();
} else {
privkey = ECUtil.toByteArray(signKey.getS(), params.getOrder().bitLength());
}
return sign(buffer.toByteArray(), privkey, params);
}
@Override
protected boolean engineVerify(byte[] sigBytes) throws SignatureException {
byte[] pubkey;
if (verifyKey instanceof NativeECPublicKey) {
pubkey = ((NativeECPublicKey) verifyKey).getData();
} else {
pubkey = ECUtil.toX962Uncompressed(verifyKey.getW(), params);
}
return verify(sigBytes, buffer.toByteArray(), pubkey, params);
}
abstract byte[] sign(byte[] data, byte[] privkey, ECParameterSpec params);
abstract boolean verify(byte[] signature, byte[] data, byte[] pubkey, ECParameterSpec params);
}
private abstract static class ExtendedSignatureSpi extends NativeSignatureSpi {
@Override
protected byte[] engineSign() throws SignatureException {
return sign(buffer.toByteArray(), signKey, params);
}
@Override
protected boolean engineVerify(byte[] sigBytes) throws SignatureException {
return verify(sigBytes, buffer.toByteArray(), verifyKey, params);
}
abstract byte[] sign(byte[] data, ECPrivateKey privkey, ECParameterSpec params);
abstract boolean verify(byte[] signature, byte[] data, ECPublicKey pubkey, ECParameterSpec params);
}
public static class TomCryptRaw extends SimpleSignatureSpi {
@Override
native byte[] sign(byte[] data, byte[] privkey, ECParameterSpec params);
@Override
native boolean verify(byte[] signature, byte[] data, byte[] pubkey, ECParameterSpec params);
}
public abstract static class Botan extends SimpleSignatureSpi {
private String type;
public Botan(String type) {
this.type = type;
}
@Override
native byte[] sign(byte[] data, byte[] privkey, ECParameterSpec params);
@Override
native boolean verify(byte[] signature, byte[] data, byte[] pubkey, ECParameterSpec params);
}
public static class BotanECDSAwithNONE extends Botan {
public BotanECDSAwithNONE() {
super("NONEwithECDSA");
}
}
public static class BotanECDSAwithSHA1 extends Botan {
public BotanECDSAwithSHA1() {
super("SHA1withECDSA");
}
}
public static class BotanECDSAwithSHA224 extends Botan {
public BotanECDSAwithSHA224() {
super("SHA224withECDSA");
}
}
public static class BotanECDSAwithSHA256 extends Botan {
public BotanECDSAwithSHA256() {
super("SHA256withECDSA");
}
}
public static class BotanECDSAwithSHA384 extends Botan {
public BotanECDSAwithSHA384() {
super("SHA384withECDSA");
}
}
public static class BotanECDSAwithSHA512 extends Botan {
public BotanECDSAwithSHA512() {
super("SHA512withECDSA");
}
}
public static class BotanECKCDSAwithNONE extends Botan {
public BotanECKCDSAwithNONE() {
super("NONEwithECKCDSA");
}
}
public static class BotanECKCDSAwithSHA1 extends Botan {
public BotanECKCDSAwithSHA1() {
super("SHA1withECKCDSA");
}
}
public static class BotanECKCDSAwithSHA224 extends Botan {
public BotanECKCDSAwithSHA224() {
super("SHA224withECKCDSA");
}
}
public static class BotanECKCDSAwithSHA256 extends Botan {
public BotanECKCDSAwithSHA256() {
super("SHA256withECKCDSA");
}
}
public static class BotanECKCDSAwithSHA384 extends Botan {
public BotanECKCDSAwithSHA384() {
super("SHA384withECKCDSA");
}
}
public static class BotanECKCDSAwithSHA512 extends Botan {
public BotanECKCDSAwithSHA512() {
super("SHA512withECKCDSA");
}
}
public static class BotanECGDSAwithNONE extends Botan {
public BotanECGDSAwithNONE() {
super("NONEwithECGDSA");
}
}
public static class BotanECGDSAwithSHA1 extends Botan {
public BotanECGDSAwithSHA1() {
super("SHA1withECGDSA");
}
}
public static class BotanECGDSAwithSHA224 extends Botan {
public BotanECGDSAwithSHA224() {
super("SHA224withECGDSA");
}
}
public static class BotanECGDSAwithSHA256 extends Botan {
public BotanECGDSAwithSHA256() {
super("SHA256withECGDSA");
}
}
public static class BotanECGDSAwithSHA384 extends Botan {
public BotanECGDSAwithSHA384() {
super("SHA384withECGDSA");
}
}
public static class BotanECGDSAwithSHA512 extends Botan {
public BotanECGDSAwithSHA512() {
super("SHA512withECGDSA");
}
}
public abstract static class Cryptopp extends SimpleSignatureSpi {
private String type;
public Cryptopp(String type) {
this.type = type;
}
@Override
native byte[] sign(byte[] data, byte[] privkey, ECParameterSpec params);
@Override
native boolean verify(byte[] signature, byte[] data, byte[] pubkey, ECParameterSpec params);
}
public static class CryptoppECDSAwithSHA1 extends Cryptopp {
public CryptoppECDSAwithSHA1() {
super("SHA1withECDSA");
}
}
public static class CryptoppECDSAwithSHA224 extends Cryptopp {
public CryptoppECDSAwithSHA224() {
super("SHA224withECDSA");
}
}
public static class CryptoppECDSAwithSHA256 extends Cryptopp {
public CryptoppECDSAwithSHA256() {
super("SHA256withECDSA");
}
}
public static class CryptoppECDSAwithSHA384 extends Cryptopp {
public CryptoppECDSAwithSHA384() {
super("SHA384withECDSA");
}
}
public static class CryptoppECDSAwithSHA512 extends Cryptopp {
public CryptoppECDSAwithSHA512() {
super("SHA512withECDSA");
}
}
public abstract static class Openssl extends SimpleSignatureSpi {
private String type;
public Openssl(String type) {
this.type = type;
}
@Override
native byte[] sign(byte[] data, byte[] privkey, ECParameterSpec params);
@Override
native boolean verify(byte[] signature, byte[] data, byte[] pubkey, ECParameterSpec params);
}
public static class OpensslECDSAwithNONE extends Openssl {
public OpensslECDSAwithNONE() {
super("NONEwithECDSA");
}
}
public abstract static class Boringssl extends SimpleSignatureSpi {
private String type;
public Boringssl(String type) {
this.type = type;
}
@Override
native byte[] sign(byte[] data, byte[] privkey, ECParameterSpec params);
@Override
native boolean verify(byte[] signature, byte[] data, byte[] pubkey, ECParameterSpec params);
}
public static class BoringsslECDSAwithNONE extends Boringssl {
public BoringsslECDSAwithNONE() {
super("NONEwithECDSA");
}
}
public abstract static class Gcrypt extends SimpleSignatureSpi {
private String type;
public Gcrypt(String type) {
this.type = type;
}
@Override
native byte[] sign(byte[] data, byte[] privkey, ECParameterSpec params);
@Override
native boolean verify(byte[] signature, byte[] data, byte[] pubkey, ECParameterSpec params);
}
public static class GcryptECDSAwithNONE extends Gcrypt {
public GcryptECDSAwithNONE() {
super("NONEwithECDSA");
}
}
public static class GcryptECDSAwithSHA1 extends Gcrypt {
public GcryptECDSAwithSHA1() {
super("SHA1withECDSA");
}
}
public static class GcryptECDSAwithSHA224 extends Gcrypt {
public GcryptECDSAwithSHA224() {
super("SHA224withECDSA");
}
}
public static class GcryptECDSAwithSHA256 extends Gcrypt {
public GcryptECDSAwithSHA256() {
super("SHA256withECDSA");
}
}
public static class GcryptECDSAwithSHA384 extends Gcrypt {
public GcryptECDSAwithSHA384() {
super("SHA384withECDSA");
}
}
public static class GcryptECDSAwithSHA512 extends Gcrypt {
public GcryptECDSAwithSHA512() {
super("SHA512withECDSA");
}
}
public static class GcryptECDDSAwithSHA1 extends Gcrypt {
public GcryptECDDSAwithSHA1() {
super("SHA1withECDDSA");
}
}
public static class GcryptECDDSAwithSHA224 extends Gcrypt {
public GcryptECDDSAwithSHA224() {
super("SHA224withECDDSA");
}
}
public static class GcryptECDDSAwithSHA256 extends Gcrypt {
public GcryptECDDSAwithSHA256() {
super("SHA256withECDDSA");
}
}
public static class GcryptECDDSAwithSHA384 extends Gcrypt {
public GcryptECDDSAwithSHA384() {
super("SHA384withECDDSA");
}
}
public static class GcryptECDDSAwithSHA512 extends Gcrypt {
public GcryptECDDSAwithSHA512() {
super("SHA512withECDDSA");
}
}
public abstract static class MbedTLS extends SimpleSignatureSpi {
private String type;
public MbedTLS(String type) {
this.type = type;
}
@Override
native byte[] sign(byte[] data, byte[] privkey, ECParameterSpec params);
@Override
native boolean verify(byte[] signature, byte[] data, byte[] pubkey, ECParameterSpec params);
}
public static class MbedTLSECDSAwithNONE extends MbedTLS {
public MbedTLSECDSAwithNONE() {
super("NONEwithECDSA");
}
}
public abstract static class Mscng extends ExtendedSignatureSpi {
private String type;
public Mscng(String type) {
this.type = type;
}
@Override
native byte[] sign(byte[] data, ECPrivateKey privkey, ECParameterSpec params);
@Override
native boolean verify(byte[] signature, byte[] data, ECPublicKey pubkey, ECParameterSpec params);
}
public static class MscngECDSAwithSHA1 extends Mscng {
public MscngECDSAwithSHA1() {
super("SHA1withECDSA");
}
}
public static class MscngECDSAwithSHA256 extends Mscng {
public MscngECDSAwithSHA256() {
super("SHA256withECDSA");
}
}
public static class MscngECDSAwithSHA384 extends Mscng {
public MscngECDSAwithSHA384() {
super("SHA384withECDSA");
}
}
public static class MscngECDSAwithSHA512 extends Mscng {
public MscngECDSAwithSHA512() {
super("SHA512withECDSA");
}
}
}
|