forked from aws/aws-encryption-sdk-java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCiphertextHeadersTest.java
612 lines (502 loc) · 22.4 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
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
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
// Copyright Amazon.com Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
package com.amazonaws.encryptionsdk.model;
import static com.amazonaws.encryptionsdk.TestUtils.assertThrows;
import static org.junit.Assert.assertArrayEquals;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
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 java.nio.ByteBuffer;
import java.util.Arrays;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.junit.Test;
public class CiphertextHeadersTest {
final CryptoAlgorithm cryptoAlgo_ =
CryptoAlgorithm.ALG_AES_256_GCM_IV12_TAG16_HKDF_SHA384_ECDSA_P384;
final String keyProviderId_ = "None";
final byte[] keyProviderInfo_ = "TestKeyID".getBytes();
final byte version_ = cryptoAlgo_.getMessageFormatVersion();
final byte invalidVersion_ = 0x00;
final CiphertextType type_ = CiphertextType.CUSTOMER_AUTHENTICATED_ENCRYPTED_DATA;
final int nonceLen_ = cryptoAlgo_.getNonceLen();
final int tagLenBytes_ = cryptoAlgo_.getTagLen();
final ContentType contentType_ = ContentType.FRAME;
final int frameSize_ = AwsCrypto.getDefaultFrameSize();
// A set of crypto algs that are representative of the different ciphertext header formats
final List<CryptoAlgorithm> testAlgs =
Arrays.asList(
CryptoAlgorithm.ALG_AES_256_GCM_HKDF_SHA512_COMMIT_KEY,
CryptoAlgorithm.ALG_AES_256_GCM_IV12_TAG16_HKDF_SHA256);
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() {
int maxEncryptedDataKeys = 42;
Map<String, String> encryptionContext = new HashMap<String, String>(1);
encryptionContext.put("ENC", "CiphertextHeader Test");
for (CryptoAlgorithm alg : testAlgs) {
final CiphertextHeaders ciphertextHeaders = createCiphertextHeaders(encryptionContext, alg);
final byte[] headerBytes = ciphertextHeaders.toByteArray();
final CiphertextHeaders reconstructedHeaders = new CiphertextHeaders();
reconstructedHeaders.deserialize(
headerBytes, 0, maxEncryptedDataKeys);
final byte[] reconstructedHeaderBytes = reconstructedHeaders.toByteArray();
assertEquals(reconstructedHeaders.getMaxEncryptedDataKeys(), maxEncryptedDataKeys);
assertArrayEquals(headerBytes, reconstructedHeaderBytes);
}
}
@Test
public void serializeDeserializeDefaultMaxEncryptedDataKeys() {
Map<String, String> encryptionContext = new HashMap<String, String>(1);
encryptionContext.put("ENC", "CiphertextHeader Test");
for (CryptoAlgorithm alg : testAlgs) {
final CiphertextHeaders ciphertextHeaders = createCiphertextHeaders(encryptionContext, alg);
final byte[] headerBytes = ciphertextHeaders.toByteArray();
final CiphertextHeaders reconstructedHeaders = new CiphertextHeaders();
reconstructedHeaders.deserialize(headerBytes, 0);
final byte[] reconstructedHeaderBytes = reconstructedHeaders.toByteArray();
assertEquals(reconstructedHeaders.getMaxEncryptedDataKeys(), CiphertextHeaders.NO_MAX_ENCRYPTED_DATA_KEYS);
assertArrayEquals(headerBytes, reconstructedHeaderBytes);
}
}
@Test
public void serializeDeserializeStreaming() {
Map<String, String> encryptionContext = new HashMap<String, String>(1);
encryptionContext.put("ENC", "CiphertextHeader Streaming Test");
for (CryptoAlgorithm alg : testAlgs) {
final CiphertextHeaders ciphertextHeaders = createCiphertextHeaders(encryptionContext, alg);
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, CiphertextHeaders.NO_MAX_ENCRYPTED_DATA_KEYS);
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, CiphertextHeaders.NO_MAX_ENCRYPTED_DATA_KEYS);
assertEquals(0, deserializedBytes);
}
@Test
public void overlyLargeEncryptionContext() {
final int size = Constants.UNSIGNED_SHORT_MAX_VAL + 1;
final byte[] encContextBytes = RandomBytesGenerator.generate(size);
for (CryptoAlgorithm alg : testAlgs) {
assertThrows(AwsCryptoException.class, () -> createCiphertextHeaders(encContextBytes, alg));
}
}
@Test
public void serializeWithNullHeaderNonce() {
for (CryptoAlgorithm alg : testAlgs) {
final CiphertextHeaders ciphertextHeaders =
new CiphertextHeaders(
type_,
alg,
new byte[0],
Collections.singletonList(keyBlob_),
contentType_,
frameSize_);
ciphertextHeaders.setHeaderTag(headerTag_);
assertThrows(AwsCryptoException.class, () -> ciphertextHeaders.toByteArray());
}
}
@Test
public void serializeWithNullHeaderTag() {
for (CryptoAlgorithm alg : testAlgs) {
final CiphertextHeaders ciphertextHeaders =
new CiphertextHeaders(
type_,
alg,
new byte[0],
Collections.singletonList(keyBlob_),
contentType_,
frameSize_);
ciphertextHeaders.setHeaderNonce(headerNonce_);
assertThrows(AwsCryptoException.class, () -> ciphertextHeaders.toByteArray());
}
}
@Test
public void serializeWithNullSuiteData() {
// Only applicable for V2 algorithms
CryptoAlgorithm alg = CryptoAlgorithm.ALG_AES_256_GCM_HKDF_SHA512_COMMIT_KEY;
final CiphertextHeaders ciphertextHeaders =
new CiphertextHeaders(
type_, alg, new byte[0], Collections.singletonList(keyBlob_), contentType_, frameSize_);
ciphertextHeaders.setHeaderTag(headerTag_);
ciphertextHeaders.setHeaderNonce(headerNonce_);
assertThrows(AwsCryptoException.class, () -> 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, CryptoAlgorithm cryptoAlg) {
final CiphertextHeaders ciphertextHeaders =
new CiphertextHeaders(
type_,
cryptoAlg,
encryptionContextBytes,
Collections.singletonList(keyBlob_),
contentType_,
frameSize_);
ciphertextHeaders.setHeaderNonce(headerNonce_);
ciphertextHeaders.setHeaderTag(headerTag_);
if (cryptoAlg.getMessageFormatVersion() == 2) {
ciphertextHeaders.setSuiteData(new byte[cryptoAlg.getSuiteDataLength()]);
}
return ciphertextHeaders;
}
private CiphertextHeaders createCiphertextHeaders(
final Map<String, String> encryptionContext, CryptoAlgorithm cryptoAlg) {
byte[] encryptionContextBytes = null;
if (encryptionContext != null) {
encryptionContextBytes = EncryptionContextSerializer.serialize(encryptionContext);
}
return createCiphertextHeaders(encryptionContextBytes, cryptoAlg);
}
@SuppressWarnings("deprecation")
@Test
public void legacyConstructCiphertextHeaders() {
final Map<String, String> encryptionContext = new HashMap<String, String>(1);
encryptionContext.put("ENC", "CiphertextHeader Streaming Test");
final byte[] encryptionContextBytes = EncryptionContextSerializer.serialize(encryptionContext);
final CiphertextHeaders ciphertextHeaders =
new CiphertextHeaders(
version_,
type_,
cryptoAlgo_,
encryptionContextBytes,
Collections.singletonList(keyBlob_),
contentType_,
frameSize_);
ciphertextHeaders.setHeaderNonce(headerNonce_);
ciphertextHeaders.setHeaderTag(headerTag_);
assertNotNull(ciphertextHeaders);
}
@SuppressWarnings("deprecation")
@Test(expected = IllegalArgumentException.class)
public void legacyConstructCiphertextHeadersMismatchedVersion() {
final Map<String, String> encryptionContext = new HashMap<String, String>(1);
encryptionContext.put("ENC", "CiphertextHeader Streaming Test");
final byte[] encryptionContextBytes = EncryptionContextSerializer.serialize(encryptionContext);
final CiphertextHeaders ciphertextHeaders =
new CiphertextHeaders(
invalidVersion_,
type_,
cryptoAlgo_,
encryptionContextBytes,
Collections.singletonList(keyBlob_),
contentType_,
frameSize_);
}
@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;
for (CryptoAlgorithm alg : testAlgs) {
final CiphertextHeaders ciphertextHeaders = createCiphertextHeaders(encryptionContext, alg);
final byte[] headerBytes = ciphertextHeaders.toByteArray();
final CiphertextHeaders reconstructedHeaders = new CiphertextHeaders();
reconstructedHeaders.deserialize(
headerBytes, 0, CiphertextHeaders.NO_MAX_ENCRYPTED_DATA_KEYS);
assertEquals(encryptionContextLen, reconstructedHeaders.getEncryptionContextLen());
}
}
@Test
public void checkKeyBlobCount() {
final Map<String, String> encryptionContext = new HashMap<String, String>(1);
encryptionContext.put("ENC", "CiphertextHeader Streaming Test");
for (CryptoAlgorithm alg : testAlgs) {
final CiphertextHeaders ciphertextHeaders = createCiphertextHeaders(encryptionContext, alg);
final byte[] headerBytes = ciphertextHeaders.toByteArray();
final CiphertextHeaders reconstructedHeaders = new CiphertextHeaders();
reconstructedHeaders.deserialize(
headerBytes, 0, CiphertextHeaders.NO_MAX_ENCRYPTED_DATA_KEYS);
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 readVersion(final ByteBuffer headerBuff) {
headerBuff.get();
}
private void readType(final ByteBuffer headerBuff) {
readVersion(headerBuff);
headerBuff.get();
}
private void readToAlgoId(final ByteBuffer headerBuff, final CryptoAlgorithm cryptoAlg) {
// Use the message format version to determine where the algorithm Id is in the
// header and how to get to it.
if (cryptoAlg.getMessageFormatVersion() == 1) {
readType(headerBuff);
} else {
readVersion(headerBuff);
}
}
private void readAlgoId(final ByteBuffer headerBuff, final CryptoAlgorithm cryptoAlg) {
readToAlgoId(headerBuff, cryptoAlg);
headerBuff.getShort();
}
private void readEncContext(final ByteBuffer headerBuff, final CryptoAlgorithm cryptoAlg) {
readAlgoId(headerBuff, cryptoAlg);
// pull out messageId to get to enc context len.
final byte[] msgId = new byte[cryptoAlg.getMessageIdLength()];
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 readKeyBlob(final ByteBuffer headerBuff, final CryptoAlgorithm cryptoAlg) {
readEncContext(headerBuff, cryptoAlg);
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 readToContentType(final ByteBuffer headerBuff, final CryptoAlgorithm cryptoAlg) {
readKeyBlob(headerBuff, cryptoAlg);
}
private void readContentType(final ByteBuffer headerBuff, final CryptoAlgorithm cryptoAlg) {
readToContentType(headerBuff, cryptoAlg);
headerBuff.get();
}
private void readToReservedField(final ByteBuffer headerBuff, final CryptoAlgorithm cryptoAlg) {
readContentType(headerBuff, cryptoAlg);
}
private void readReservedField(final ByteBuffer headerBuff, final CryptoAlgorithm cryptoAlg) {
readToReservedField(headerBuff, cryptoAlg);
headerBuff.getInt();
}
private void readToNonceLen(final ByteBuffer headerBuff, final CryptoAlgorithm cryptoAlg) {
readReservedField(headerBuff, cryptoAlg);
}
private void readNonceLen(final ByteBuffer headerBuff, final CryptoAlgorithm cryptoAlg) {
readToNonceLen(headerBuff, cryptoAlg);
headerBuff.get();
}
private void readToFrameLen(final ByteBuffer headerBuff, final CryptoAlgorithm cryptoAlg) {
// Use the message format version to determine where the frame length is in the
// header and how to get to it.
if (cryptoAlg.getMessageFormatVersion() == 1) {
readNonceLen(headerBuff, cryptoAlg);
} else {
readContentType(headerBuff, cryptoAlg);
}
}
@Test
public void invalidVersion() {
final Map<String, String> encryptionContext = new HashMap<String, String>(1);
encryptionContext.put("ENC", "CiphertextHeader Streaming Test");
for (CryptoAlgorithm alg : testAlgs) {
final CiphertextHeaders ciphertextHeaders = createCiphertextHeaders(encryptionContext, alg);
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();
assertThrows(
BadCiphertextException.class,
"Invalid version",
() ->
reconstructedHeaders.deserialize(
headerBuff.array(), 0, CiphertextHeaders.NO_MAX_ENCRYPTED_DATA_KEYS));
}
}
@Test
public void invalidType() {
// Only applicable for V1 algorithms
final Map<String, String> encryptionContext = new HashMap<String, String>(1);
encryptionContext.put("ENC", "CiphertextHeader Streaming Test");
final CryptoAlgorithm cryptoAlgorithm = CryptoAlgorithm.ALG_AES_256_GCM_IV12_TAG16_HKDF_SHA256;
final CiphertextHeaders ciphertextHeaders =
createCiphertextHeaders(encryptionContext, cryptoAlgorithm);
final byte[] headerBytes = ciphertextHeaders.toByteArray();
final ByteBuffer headerBuff = ByteBuffer.wrap(headerBytes);
readVersion(headerBuff);
// set type to invalid value of 0.
headerBuff.put((byte) 0);
final CiphertextHeaders reconstructedHeaders = new CiphertextHeaders();
assertThrows(
BadCiphertextException.class,
"Invalid ciphertext type",
() ->
reconstructedHeaders.deserialize(
headerBuff.array(), 0, CiphertextHeaders.NO_MAX_ENCRYPTED_DATA_KEYS));
}
@Test
public void invalidAlgoId() {
final Map<String, String> encryptionContext = new HashMap<String, String>(1);
encryptionContext.put("ENC", "CiphertextHeader Streaming Test");
for (CryptoAlgorithm alg : testAlgs) {
final CiphertextHeaders ciphertextHeaders = createCiphertextHeaders(encryptionContext, alg);
final byte[] headerBytes = ciphertextHeaders.toByteArray();
final ByteBuffer headerBuff = ByteBuffer.wrap(headerBytes);
readToAlgoId(headerBuff, alg);
// set algoId to invalid value of 0.
headerBuff.putShort((short) 0);
final CiphertextHeaders reconstructedHeaders = new CiphertextHeaders();
assertThrows(
BadCiphertextException.class,
"Invalid algorithm identifier in ciphertext",
() ->
reconstructedHeaders.deserialize(
headerBuff.array(), 0, CiphertextHeaders.NO_MAX_ENCRYPTED_DATA_KEYS));
}
}
@Test
public void invalidContentType() {
final Map<String, String> encryptionContext = new HashMap<String, String>(1);
encryptionContext.put("ENC", "CiphertextHeader Streaming Test");
for (CryptoAlgorithm alg : testAlgs) {
final CiphertextHeaders ciphertextHeaders = createCiphertextHeaders(encryptionContext, alg);
final byte[] headerBytes = ciphertextHeaders.toByteArray();
final ByteBuffer headerBuff = ByteBuffer.wrap(headerBytes);
readToContentType(headerBuff, alg);
// set content type to an invalid value
headerBuff.put((byte) 10);
final CiphertextHeaders reconstructedHeaders = new CiphertextHeaders();
assertThrows(
BadCiphertextException.class,
"Invalid content type in ciphertext.",
() ->
reconstructedHeaders.deserialize(
headerBuff.array(), 0, CiphertextHeaders.NO_MAX_ENCRYPTED_DATA_KEYS));
}
}
@Test
public void invalidReservedFieldLen() {
// Only applicable for V1 algorithms
final Map<String, String> encryptionContext = new HashMap<String, String>(1);
encryptionContext.put("ENC", "CiphertextHeader Streaming Test");
final CryptoAlgorithm cryptoAlgorithm = CryptoAlgorithm.ALG_AES_256_GCM_IV12_TAG16_HKDF_SHA256;
final CiphertextHeaders ciphertextHeaders =
createCiphertextHeaders(encryptionContext, cryptoAlgorithm);
final byte[] headerBytes = ciphertextHeaders.toByteArray();
final ByteBuffer headerBuff = ByteBuffer.wrap(headerBytes);
readToReservedField(headerBuff, cryptoAlgorithm);
// set reserved field to an invalid value
headerBuff.putInt(-1);
final CiphertextHeaders reconstructedHeaders = new CiphertextHeaders();
assertThrows(
BadCiphertextException.class,
"Invalid value for reserved field in ciphertext",
() ->
reconstructedHeaders.deserialize(
headerBuff.array(), 0, CiphertextHeaders.NO_MAX_ENCRYPTED_DATA_KEYS));
}
@Test
public void invalidNonceLen() {
// Only applicable for V1 algorithms
final Map<String, String> encryptionContext = new HashMap<String, String>(1);
encryptionContext.put("ENC", "CiphertextHeader Streaming Test");
final CryptoAlgorithm cryptoAlgorithm = CryptoAlgorithm.ALG_AES_256_GCM_IV12_TAG16_HKDF_SHA256;
final CiphertextHeaders ciphertextHeaders =
createCiphertextHeaders(encryptionContext, cryptoAlgorithm);
final byte[] headerBytes = ciphertextHeaders.toByteArray();
final ByteBuffer headerBuff = ByteBuffer.wrap(headerBytes);
readToNonceLen(headerBuff, cryptoAlgorithm);
// set nonce len to an invalid value
headerBuff.put((byte) -1);
final CiphertextHeaders reconstructedHeaders = new CiphertextHeaders();
assertThrows(
BadCiphertextException.class,
"Invalid nonce length in ciphertext",
() ->
reconstructedHeaders.deserialize(
headerBuff.array(), 0, CiphertextHeaders.NO_MAX_ENCRYPTED_DATA_KEYS));
}
@Test
public void invalidFrameLength() {
final Map<String, String> encryptionContext = new HashMap<String, String>(1);
encryptionContext.put("ENC", "CiphertextHeader Streaming Test");
for (CryptoAlgorithm alg : testAlgs) {
final CiphertextHeaders ciphertextHeaders = createCiphertextHeaders(encryptionContext, alg);
final byte[] headerBytes = ciphertextHeaders.toByteArray();
final ByteBuffer headerBuff = ByteBuffer.wrap(headerBytes);
readToFrameLen(headerBuff, alg);
// set frame len to an invalid value
headerBuff.putInt(-1);
final CiphertextHeaders reconstructedHeaders = new CiphertextHeaders();
assertThrows(
BadCiphertextException.class,
"Invalid frame length in ciphertext",
() ->
reconstructedHeaders.deserialize(
headerBuff.array(), 0, CiphertextHeaders.NO_MAX_ENCRYPTED_DATA_KEYS));
}
}
}