-
Notifications
You must be signed in to change notification settings - Fork 122
/
Copy pathCiphertextHeadersTest.java
440 lines (342 loc) · 16.8 KB
/
CiphertextHeadersTest.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
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
/*
* Copyright 2016 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except
* in compliance with the License. A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
* specific language governing permissions and limitations under the License.
*/
package com.amazonaws.encryptionsdk.model;
import static org.junit.Assert.assertArrayEquals;
import static org.junit.Assert.assertEquals;
import java.nio.ByteBuffer;
import java.util.Collections;
import java.util.HashMap;
import java.util.Map;
import javax.crypto.spec.SecretKeySpec;
import org.junit.Test;
import com.amazonaws.encryptionsdk.AwsCrypto;
import com.amazonaws.encryptionsdk.CryptoAlgorithm;
import com.amazonaws.encryptionsdk.exception.AwsCryptoException;
import com.amazonaws.encryptionsdk.exception.BadCiphertextException;
import com.amazonaws.encryptionsdk.internal.Constants;
import com.amazonaws.encryptionsdk.internal.EncryptionContextSerializer;
import com.amazonaws.encryptionsdk.internal.RandomBytesGenerator;
import com.amazonaws.encryptionsdk.internal.VersionInfo;
public class CiphertextHeadersTest {
final CryptoAlgorithm cryptoAlgo_ = AwsCrypto.getDefaultCryptoAlgorithm();
final String keyProviderId_ = "None";
final byte[] keyProviderInfo_ = "TestKeyID".getBytes();
final String keyId_ = "testKeyId";
final byte version_ = VersionInfo.CURRENT_CIPHERTEXT_VERSION;
final CiphertextType type_ = CiphertextType.CUSTOMER_AUTHENTICATED_ENCRYPTED_DATA;
final int nonceLen_ = cryptoAlgo_.getNonceLen();
final int tagLenBytes_ = cryptoAlgo_.getTagLen();
final int tagLenBits_ = tagLenBytes_ * 8;
final ContentType contentType_ = ContentType.FRAME;
final int frameSize_ = AwsCrypto.getDefaultFrameSize();
byte[] messageId_ = RandomBytesGenerator.generate(Constants.MESSAGE_ID_LEN);
byte[] testPlaintextKey_ = RandomBytesGenerator.generate(cryptoAlgo_.getKeyLength());
SecretKeySpec testKey_ = new SecretKeySpec(testPlaintextKey_, cryptoAlgo_.getKeyAlgo());
byte[] encryptedKey_ = RandomBytesGenerator.generate(cryptoAlgo_.getKeyLength());
final KeyBlob keyBlob_ = new KeyBlob(keyProviderId_, keyProviderInfo_, encryptedKey_);
byte[] headerNonce_ = RandomBytesGenerator.generate(nonceLen_);
byte[] headerTag_ = RandomBytesGenerator.generate(tagLenBytes_);
@Test
public void serializeDeserialize() {
Map<String, String> encryptionContext = new HashMap<String, String>(1);
encryptionContext.put("ENC", "CiphertextHeader Test");
final CiphertextHeaders ciphertextHeaders = createCiphertextHeaders(encryptionContext);
final byte[] headerBytes = ciphertextHeaders.toByteArray();
final CiphertextHeaders reconstructedHeaders = new CiphertextHeaders();
reconstructedHeaders.deserialize(headerBytes, 0);
final byte[] reconstructedHeaderBytes = reconstructedHeaders.toByteArray();
assertArrayEquals(headerBytes, reconstructedHeaderBytes);
}
@Test
public void serializeDeserializeStreaming() {
Map<String, String> encryptionContext = new HashMap<String, String>(1);
encryptionContext.put("ENC", "CiphertextHeader Streaming Test");
final CiphertextHeaders ciphertextHeaders = createCiphertextHeaders(encryptionContext);
final byte[] headerBytes = ciphertextHeaders.toByteArray();
final CiphertextHeaders reconstructedHeaders = new CiphertextHeaders();
int totalParsedBytes = 0;
int bytesToParseLen = 1;
int bytesParsed;
while (reconstructedHeaders.isComplete() == false) {
final byte[] bytesToParse = new byte[bytesToParseLen];
System.arraycopy(headerBytes, totalParsedBytes, bytesToParse, 0, bytesToParse.length);
bytesParsed = reconstructedHeaders.deserialize(bytesToParse, 0);
if (bytesParsed == 0) {
bytesToParseLen++;
} else {
totalParsedBytes += bytesParsed;
bytesToParseLen = 1;
}
}
final byte[] reconstructedHeaderBytes = reconstructedHeaders.toByteArray();
assertArrayEquals(headerBytes, reconstructedHeaderBytes);
}
@Test
public void deserializeNull() {
final CiphertextHeaders ciphertextHeaders = new CiphertextHeaders();
final int deserializedBytes = ciphertextHeaders.deserialize(null, 0);
assertEquals(0, deserializedBytes);
}
@Test(expected = AwsCryptoException.class)
public void overlyLargeEncryptionContext() {
final int size = Constants.UNSIGNED_SHORT_MAX_VAL + 1;
final byte[] encContextBytes = RandomBytesGenerator.generate(size);
createCiphertextHeaders(encContextBytes);
}
@Test(expected = AwsCryptoException.class)
public void serializeWithNullHeaderNonce() {
final CiphertextHeaders ciphertextHeaders = new CiphertextHeaders(
version_,
type_,
cryptoAlgo_,
new byte[0],
Collections.singletonList(keyBlob_),
contentType_,
frameSize_);
ciphertextHeaders.setHeaderTag(headerTag_);
ciphertextHeaders.toByteArray();
}
@Test(expected = AwsCryptoException.class)
public void serializeWithNullHeaderTag() {
final CiphertextHeaders ciphertextHeaders = new CiphertextHeaders(
version_,
type_,
cryptoAlgo_,
new byte[0],
Collections.singletonList(keyBlob_),
contentType_,
frameSize_);
ciphertextHeaders.setHeaderNonce(headerNonce_);
ciphertextHeaders.toByteArray();
}
/*
* @Test
* public void byteFormatCheck() {
* testPlaintextKey_ = ByteFormatCheckValues.getPlaintextKey();
* testKey_ = new SecretKeySpec(testPlaintextKey_,
* cryptoAlgo_.getKeySpec());
* encryptedKey_ = ByteFormatCheckValues.getEncryptedKey();
* dataKey_ = new AWSKMSDataKey(testKey_, encryptedKey_);
* headerNonce_ = ByteFormatCheckValues.getNonce();
* headerTag_ = ByteFormatCheckValues.getTag();
*
* Map<String, String> encryptionContext = new HashMap<String, String>(1);
* encryptionContext.put("ENC", "CiphertextHeader format check test");
*
* final CiphertextHeaders ciphertextHeaders =
* createCiphertextHeaders(encryptionContext);
* //NOTE: this test will fail because of the line below.
* //That is, the message id is randomly generated in the ciphertext
* headers.
* messageId_ = ciphertextHeaders.getMessageId();
* final byte[] ciphertextHeaderHash =
* TestIOUtils.getSha256Hash(ciphertextHeaders.toByteArray());
*
* assertArrayEquals(ByteFormatCheckValues.getCiphertextHeaderHash(),
* ciphertextHeaderHash);
* }
*/
private CiphertextHeaders createCiphertextHeaders(final byte[] encryptionContextBytes) {
final CiphertextHeaders ciphertextHeaders = new CiphertextHeaders(
version_,
type_,
cryptoAlgo_,
encryptionContextBytes,
Collections.singletonList(keyBlob_),
contentType_,
frameSize_);
ciphertextHeaders.setHeaderNonce(headerNonce_);
ciphertextHeaders.setHeaderTag(headerTag_);
return ciphertextHeaders;
}
private CiphertextHeaders createCiphertextHeaders(final Map<String, String> encryptionContext) {
byte[] encryptionContextBytes = null;
if (encryptionContext != null) {
encryptionContextBytes = EncryptionContextSerializer.serialize(encryptionContext);
}
return createCiphertextHeaders(encryptionContextBytes);
}
@Test
public void checkEncContextLen() {
final Map<String, String> encryptionContext = new HashMap<String, String>(1);
encryptionContext.put("ENC", "CiphertextHeader Streaming Test");
final byte[] encryptionContextBytes = EncryptionContextSerializer.serialize(encryptionContext);
final int encryptionContextLen = encryptionContextBytes.length;
final CiphertextHeaders ciphertextHeaders = createCiphertextHeaders(encryptionContext);
final byte[] headerBytes = ciphertextHeaders.toByteArray();
final CiphertextHeaders reconstructedHeaders = new CiphertextHeaders();
reconstructedHeaders.deserialize(headerBytes, 0);
assertEquals(encryptionContextLen, reconstructedHeaders.getEncryptionContextLen());
}
@Test
public void checkKeyBlobCount() {
final Map<String, String> encryptionContext = new HashMap<String, String>(1);
encryptionContext.put("ENC", "CiphertextHeader Streaming Test");
final CiphertextHeaders ciphertextHeaders = createCiphertextHeaders(encryptionContext);
final byte[] headerBytes = ciphertextHeaders.toByteArray();
final CiphertextHeaders reconstructedHeaders = new CiphertextHeaders();
reconstructedHeaders.deserialize(headerBytes, 0);
assertEquals(1, reconstructedHeaders.getEncryptedKeyBlobCount());
}
@Test
public void checkNullMessageId() {
final CiphertextHeaders ciphertextHeaders = new CiphertextHeaders();
assertEquals(null, ciphertextHeaders.getMessageId());
}
@Test
public void checkNullHeaderNonce() {
final CiphertextHeaders ciphertextHeaders = new CiphertextHeaders();
assertEquals(null, ciphertextHeaders.getHeaderNonce());
}
@Test
public void checkNullHeaderTag() {
final CiphertextHeaders ciphertextHeaders = new CiphertextHeaders();
assertEquals(null, ciphertextHeaders.getHeaderTag());
}
private void readUptoVersion(final ByteBuffer headerBuff) {
headerBuff.get();
}
private void readUptoType(final ByteBuffer headerBuff) {
readUptoVersion(headerBuff);
headerBuff.get();
}
private void readUptoAlgoId(final ByteBuffer headerBuff) {
readUptoType(headerBuff);
headerBuff.getShort();
}
private void readUptoEncContext(final ByteBuffer headerBuff) {
readUptoAlgoId(headerBuff);
// pull out messageId to get to enc context len.
final byte[] msgId = new byte[Constants.MESSAGE_ID_LEN];
headerBuff.get(msgId);
// pull out enc context to get to key count.
final int encContextLen = headerBuff.getShort();
final byte[] encContext = new byte[encContextLen];
headerBuff.get(encContext);
}
private void readUptoKeyBlob(final ByteBuffer headerBuff) {
readUptoEncContext(headerBuff);
headerBuff.getShort(); // get key count
final short keyProviderIdLen = headerBuff.getShort();
final byte[] keyProviderId = new byte[keyProviderIdLen];
headerBuff.get(keyProviderId);
final short keyProviderInfoLen = headerBuff.getShort();
final byte[] keyProviderInfo = new byte[keyProviderInfoLen];
headerBuff.get(keyProviderInfo);
final short keyLen = headerBuff.getShort();
final byte[] key = new byte[keyLen];
headerBuff.get(key);
}
private void readUptoContentType(final ByteBuffer headerBuff) {
readUptoKeyBlob(headerBuff);
headerBuff.get();
}
private void readUptoReservedField(final ByteBuffer headerBuff) {
readUptoContentType(headerBuff);
headerBuff.getInt();
}
private void readUptoNonceLen(final ByteBuffer headerBuff) {
readUptoReservedField(headerBuff);
headerBuff.get();
}
@Test(expected = BadCiphertextException.class)
public void invalidVersion(){
final Map<String, String> encryptionContext = new HashMap<String, String>(1);
encryptionContext.put("ENC", "CiphertextHeader Streaming Test");
final CiphertextHeaders ciphertextHeaders = createCiphertextHeaders(encryptionContext);
final byte[] headerBytes = ciphertextHeaders.toByteArray();
final ByteBuffer headerBuff = ByteBuffer.wrap(headerBytes);
//set version to invalid type of 0.
headerBuff.put((byte) 0);
final CiphertextHeaders reconstructedHeaders = new CiphertextHeaders();
reconstructedHeaders.deserialize(headerBuff.array(), 0);
}
@Test(expected = BadCiphertextException.class)
public void invalidType() {
final Map<String, String> encryptionContext = new HashMap<String, String>(1);
encryptionContext.put("ENC", "CiphertextHeader Streaming Test");
final CiphertextHeaders ciphertextHeaders = createCiphertextHeaders(encryptionContext);
final byte[] headerBytes = ciphertextHeaders.toByteArray();
final ByteBuffer headerBuff = ByteBuffer.wrap(headerBytes);
readUptoVersion(headerBuff);
// set type to invalid value of 0.
headerBuff.put((byte) 0);
final CiphertextHeaders reconstructedHeaders = new CiphertextHeaders();
reconstructedHeaders.deserialize(headerBuff.array(), 0);
}
@Test(expected = BadCiphertextException.class)
public void invalidAlgoId() {
final Map<String, String> encryptionContext = new HashMap<String, String>(1);
encryptionContext.put("ENC", "CiphertextHeader Streaming Test");
final CiphertextHeaders ciphertextHeaders = createCiphertextHeaders(encryptionContext);
final byte[] headerBytes = ciphertextHeaders.toByteArray();
final ByteBuffer headerBuff = ByteBuffer.wrap(headerBytes);
readUptoType(headerBuff);
// set algoId to invalid value of 0.
headerBuff.putShort((short) 0);
final CiphertextHeaders reconstructedHeaders = new CiphertextHeaders();
reconstructedHeaders.deserialize(headerBuff.array(), 0);
}
@Test(expected = BadCiphertextException.class)
public void invalidContentType() {
final Map<String, String> encryptionContext = new HashMap<String, String>(1);
encryptionContext.put("ENC", "CiphertextHeader Streaming Test");
final CiphertextHeaders ciphertextHeaders = createCiphertextHeaders(encryptionContext);
final byte[] headerBytes = ciphertextHeaders.toByteArray();
final ByteBuffer headerBuff = ByteBuffer.wrap(headerBytes);
readUptoKeyBlob(headerBuff);
// set content type to an invalid value
headerBuff.put((byte) 10);
final CiphertextHeaders reconstructedHeaders = new CiphertextHeaders();
reconstructedHeaders.deserialize(headerBuff.array(), 0);
}
@Test(expected = BadCiphertextException.class)
public void invalidReservedFieldLen() {
final Map<String, String> encryptionContext = new HashMap<String, String>(1);
encryptionContext.put("ENC", "CiphertextHeader Streaming Test");
final CiphertextHeaders ciphertextHeaders = createCiphertextHeaders(encryptionContext);
final byte[] headerBytes = ciphertextHeaders.toByteArray();
final ByteBuffer headerBuff = ByteBuffer.wrap(headerBytes);
readUptoContentType(headerBuff);
// set reserved field to an invalid value
headerBuff.putInt(-1);
final CiphertextHeaders reconstructedHeaders = new CiphertextHeaders();
reconstructedHeaders.deserialize(headerBuff.array(), 0);
}
@Test(expected = BadCiphertextException.class)
public void invalidNonceLen() {
final Map<String, String> encryptionContext = new HashMap<String, String>(1);
encryptionContext.put("ENC", "CiphertextHeader Streaming Test");
final CiphertextHeaders ciphertextHeaders = createCiphertextHeaders(encryptionContext);
final byte[] headerBytes = ciphertextHeaders.toByteArray();
final ByteBuffer headerBuff = ByteBuffer.wrap(headerBytes);
readUptoReservedField(headerBuff);
// set nonce len to an invalid value
headerBuff.put((byte) -1);
final CiphertextHeaders reconstructedHeaders = new CiphertextHeaders();
reconstructedHeaders.deserialize(headerBuff.array(), 0);
}
@Test(expected = BadCiphertextException.class)
public void invalidFrameLength() {
final Map<String, String> encryptionContext = new HashMap<String, String>(1);
encryptionContext.put("ENC", "CiphertextHeader Streaming Test");
final CiphertextHeaders ciphertextHeaders = createCiphertextHeaders(encryptionContext);
final byte[] headerBytes = ciphertextHeaders.toByteArray();
final ByteBuffer headerBuff = ByteBuffer.wrap(headerBytes);
readUptoNonceLen(headerBuff);
// set frame type to an invalid value for framed data
headerBuff.putInt(0);
final CiphertextHeaders reconstructedHeaders = new CiphertextHeaders();
reconstructedHeaders.deserialize(headerBuff.array(), 0);
}
}