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
|
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 javax.crypto.spec.SecretKeySpec;
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 {
ECPrivateKey privateKey;
ECPublicKey publicKey;
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 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 {
// TODO: This is dangerous/not correct ! Need to actually implement KDF1 and KDF2 here probably.
return new SecretKeySpec(engineGenerateSecret(), algorithm);
}
private abstract static class SimpleKeyAgreementSpi extends NativeKeyAgreementSpi {
@Override
protected byte[] engineGenerateSecret() throws IllegalStateException {
byte[] pubkey;
if (publicKey instanceof NativeECPublicKey) {
pubkey = ((NativeECPublicKey) publicKey).getData();
} else {
pubkey = ECUtil.toX962Uncompressed(publicKey.getW(), params.getCurve());
}
byte[] privkey;
if (privateKey instanceof NativeECPrivateKey) {
privkey = ((NativeECPrivateKey) privateKey).getData();
} else {
privkey = ECUtil.toByteArray(privateKey.getS(), params.getCurve().getField().getFieldSize());
}
return generateSecret(pubkey, privkey, params);
}
abstract byte[] generateSecret(byte[] pubkey, byte[] privkey, ECParameterSpec params);
}
private abstract static class ExtendedKeyAgreementSpi extends NativeKeyAgreementSpi {
@Override
protected byte[] engineGenerateSecret() throws IllegalStateException {
return generateSecret(publicKey, privateKey, params);
}
abstract byte[] generateSecret(ECPublicKey pubkey, ECPrivateKey privkey, ECParameterSpec params);
}
public static class TomCrypt extends SimpleKeyAgreementSpi {
@Override
native byte[] generateSecret(byte[] pubkey, byte[] privkey, ECParameterSpec params);
}
public abstract static class Botan extends SimpleKeyAgreementSpi {
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");
}
}
public abstract static class Cryptopp extends SimpleKeyAgreementSpi {
private String type;
public Cryptopp(String type) {
this.type = type;
}
@Override
native byte[] generateSecret(byte[] pubkey, byte[] privkey, ECParameterSpec params);
}
public static class CryptoppECDH extends Cryptopp {
public CryptoppECDH() {
super("ECDH");
}
}
public abstract static class Openssl extends SimpleKeyAgreementSpi {
private String type;
public Openssl(String type) {
this.type = type;
}
@Override
native byte[] generateSecret(byte[] pubkey, byte[] privkey, ECParameterSpec params);
}
public static class OpensslECDH extends Openssl {
public OpensslECDH() {
super("ECDH");
}
}
public abstract static class Mscng extends ExtendedKeyAgreementSpi {
private String type;
public Mscng(String type) {
this.type = type;
}
@Override
native byte[] generateSecret(ECPublicKey pubkey, ECPrivateKey privkey, ECParameterSpec params);
}
public static class MscngECDHwithSHA1KDF extends Mscng {
public MscngECDHwithSHA1KDF() {
super("ECDHwithSHA1KDF");
}
}
public static class MscngECDHwithSHA256KDF extends Mscng {
public MscngECDHwithSHA256KDF() {
super("ECDHwithSHA256KDF");
}
}
public static class MscngECDHwithSHA384KDF extends Mscng {
public MscngECDHwithSHA384KDF() {
super("ECDHwithSHA384KDF");
}
}
public static class MscngECDHwithSHA512KDF extends Mscng {
public MscngECDHwithSHA512KDF() {
super("ECDHwithSHA512KDF");
}
}
}
|