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
|
package cz.crcs.ectester.standalone.libs.jni;
import cz.crcs.ectester.common.util.ECUtil;
import javax.crypto.KeyAgreementSpi;
import javax.crypto.SecretKey;
import javax.crypto.ShortBufferException;
import java.security.*;
import java.security.interfaces.ECPrivateKey;
import java.security.interfaces.ECPublicKey;
import java.security.spec.AlgorithmParameterSpec;
import java.security.spec.ECParameterSpec;
/**
* @author Jan Jancar johny@neuromancer.sk
*/
public abstract class NativeKeyAgreementSpi extends KeyAgreementSpi {
private ECPrivateKey privateKey;
private ECPublicKey publicKey;
private ECParameterSpec params;
@Override
protected void engineInit(Key key, SecureRandom random) throws InvalidKeyException {
if (!(key instanceof ECPrivateKey)) {
throw new InvalidKeyException
("Key must be instance of ECPrivateKey");
}
privateKey = (ECPrivateKey) key;
this.params = privateKey.getParams();
}
@Override
protected void engineInit(Key key, AlgorithmParameterSpec params, SecureRandom random) throws InvalidKeyException, InvalidAlgorithmParameterException {
if (!(params instanceof ECParameterSpec)) {
throw new InvalidAlgorithmParameterException();
}
engineInit(key, random);
this.params = (ECParameterSpec) params;
}
@Override
protected Key engineDoPhase(Key key, boolean lastPhase) throws InvalidKeyException, IllegalStateException {
if (privateKey == null) {
throw new IllegalStateException("Not initialized");
}
if (publicKey != null) {
throw new IllegalStateException("Phase already executed");
}
if (!lastPhase) {
throw new IllegalStateException
("Only two party agreement supported, lastPhase must be true");
}
if (!(key instanceof ECPublicKey)) {
throw new InvalidKeyException
("Key must be an instance of ECPublicKey");
}
publicKey = (ECPublicKey) key;
return null;
}
@Override
protected byte[] engineGenerateSecret() throws IllegalStateException {
byte[] pubkey = ECUtil.toX962Uncompressed(publicKey.getW(), params.getCurve());
byte[] privkey = ECUtil.toByteArray(privateKey.getS(), params.getCurve().getField().getFieldSize());
return generateSecret(pubkey, privkey, params);
}
@Override
protected int engineGenerateSecret(byte[] sharedSecret, int offset) throws IllegalStateException, ShortBufferException {
byte[] secret = engineGenerateSecret();
if (sharedSecret.length < offset + secret.length) {
throw new ShortBufferException();
}
System.arraycopy(secret, 0, sharedSecret, offset, secret.length);
return secret.length;
}
@Override
protected SecretKey engineGenerateSecret(String algorithm) throws IllegalStateException, NoSuchAlgorithmException, InvalidKeyException {
throw new NoSuchAlgorithmException(algorithm);
}
abstract byte[] generateSecret(byte[] pubkey, byte[] privkey, ECParameterSpec params);
public static class TomCrypt extends NativeKeyAgreementSpi {
@Override
native byte[] generateSecret(byte[] pubkey, byte[] privkey, ECParameterSpec params);
}
public abstract static class Botan extends NativeKeyAgreementSpi {
private String type;
public Botan(String type) {
this.type = type;
}
@Override
native byte[] generateSecret(byte[] pubkey, byte[] privkey, ECParameterSpec params);
}
public static class BotanECDH extends Botan {
public BotanECDH() {
super("ECDH");
}
}
public static class BotanECDHwithSHA1KDF extends Botan {
public BotanECDHwithSHA1KDF() {
super("ECDHwithSHA1KDF");
}
}
public static class BotanECDHwithSHA224KDF extends Botan {
public BotanECDHwithSHA224KDF() {
super("ECDHwithSHA224KDF");
}
}
public static class BotanECDHwithSHA256KDF extends Botan {
public BotanECDHwithSHA256KDF() {
super("ECDHwithSHA256KDF");
}
}
public static class BotanECDHwithSHA384KDF extends Botan {
public BotanECDHwithSHA384KDF() {
super("ECDHwithSHA384KDF");
}
}
public static class BotanECDHwithSHA512KDF extends Botan {
public BotanECDHwithSHA512KDF() {
super("ECDHwithSHA512KDF");
}
}
}
|