@@ -9,7 +9,8 @@ public class GCMSIVNativeLimitTest extends TestCase
9
9
{
10
10
11
11
@ Test
12
- public void testInitNative () throws Exception
12
+ public void testInitNative ()
13
+ throws Exception
13
14
{
14
15
if (!isNativeVariant ())
15
16
{
@@ -153,7 +154,8 @@ public void testInitNative() throws Exception
153
154
}
154
155
155
156
@ Test
156
- public void testUpdateAADBytes () throws Exception
157
+ public void testUpdateAADBytes ()
158
+ throws Exception
157
159
{
158
160
159
161
if (!isNativeVariant ())
@@ -341,7 +343,8 @@ public void testUpdateAADBytes() throws Exception
341
343
342
344
343
345
@ Test
344
- public void testDoFinal () throws Exception
346
+ public void testDoFinal ()
347
+ throws Exception
345
348
{
346
349
347
350
if (!isNativeVariant ())
@@ -358,7 +361,7 @@ public void testDoFinal() throws Exception
358
361
359
362
{
360
363
initNative (ref , true , new byte [16 ], new byte [12 ], null );
361
- doFinal (ref , null ,0 , new byte [1 ], 1 );
364
+ doFinal (ref , null , 0 , new byte [1 ], 1 );
362
365
fail ();
363
366
}
364
367
catch (Exception ex )
@@ -382,7 +385,7 @@ public void testDoFinal() throws Exception
382
385
383
386
{
384
387
initNative (ref , true , new byte [16 ], new byte [12 ], null );
385
- doFinal (ref , new byte [1 ],-1 , new byte [1 ], 1 );
388
+ doFinal (ref , new byte [1 ], -1 , new byte [1 ], 1 );
386
389
fail ();
387
390
}
388
391
catch (Exception ex )
@@ -407,7 +410,7 @@ public void testDoFinal() throws Exception
407
410
408
411
{
409
412
initNative (ref , true , new byte [16 ], new byte [12 ], null );
410
- doFinal (ref , new byte [1 ],2 , new byte [1 ], 1 );
413
+ doFinal (ref , new byte [1 ], 2 , new byte [1 ], 1 );
411
414
fail ();
412
415
}
413
416
catch (Exception ex )
@@ -428,11 +431,10 @@ public void testDoFinal() throws Exception
428
431
{
429
432
long ref = makeInstance ();
430
433
try
431
-
432
434
{
433
435
initNative (ref , true , new byte [16 ], new byte [12 ], null );
434
- test_set_max_dl (ref ,2 );
435
- doFinal (ref , new byte [3 ],3 , new byte [1 ], 1 );
436
+ test_set_max_dl (ref , 2 );
437
+ doFinal (ref , new byte [3 ], 3 , new byte [1 ], 1 );
436
438
fail ();
437
439
}
438
440
catch (Exception ex )
@@ -449,15 +451,32 @@ public void testDoFinal() throws Exception
449
451
};
450
452
451
453
452
- new AESNativeGCMSIV () // output null
454
+ new AESNativeGCMSIV () // input passes checkStatus
453
455
{
454
456
{
455
457
long ref = makeInstance ();
456
458
try
459
+ {
460
+ initNative (ref , true , new byte [16 ], new byte [12 ], null );
461
+ test_set_max_dl (ref , 2 );
462
+ doFinal (ref , new byte [3 ], 2 , new byte [32 ], 0 );
463
+ }
464
+ finally
465
+ {
466
+ dispose (ref );
467
+ }
468
+ }
469
+ };
470
+
457
471
472
+ new AESNativeGCMSIV () // output null
473
+ {
474
+ {
475
+ long ref = makeInstance ();
476
+ try
458
477
{
459
478
initNative (ref , true , new byte [16 ], new byte [12 ], null );
460
- doFinal (ref , new byte [3 ], 3 ,null , 0 );
479
+ doFinal (ref , new byte [3 ], 3 , null , 0 );
461
480
fail ();
462
481
}
463
482
catch (Exception ex )
@@ -479,10 +498,9 @@ public void testDoFinal() throws Exception
479
498
{
480
499
long ref = makeInstance ();
481
500
try
482
-
483
501
{
484
502
initNative (ref , true , new byte [16 ], new byte [12 ], null );
485
- doFinal (ref , new byte [3 ],3 , new byte [0 ], -1 );
503
+ doFinal (ref , new byte [3 ], 3 , new byte [0 ], -1 );
486
504
fail ();
487
505
}
488
506
catch (Exception ex )
@@ -506,7 +524,7 @@ public void testDoFinal() throws Exception
506
524
507
525
{
508
526
initNative (ref , true , new byte [16 ], new byte [12 ], null );
509
- doFinal (ref , new byte [3 ],3 , new byte [0 ], 1 );
527
+ doFinal (ref , new byte [3 ], 3 , new byte [0 ], 1 );
510
528
fail ();
511
529
}
512
530
catch (Exception ex )
@@ -531,7 +549,7 @@ public void testDoFinal() throws Exception
531
549
532
550
{
533
551
initNative (ref , true , new byte [16 ], new byte [12 ], null );
534
- doFinal (ref , new byte [1 ],1 , new byte [0 ], 0 );
552
+ doFinal (ref , new byte [1 ], 1 , new byte [0 ], 0 );
535
553
fail ();
536
554
}
537
555
catch (Exception ex )
@@ -555,7 +573,7 @@ public void testDoFinal() throws Exception
555
573
556
574
{
557
575
initNative (ref , true , new byte [16 ], new byte [12 ], null );
558
- doFinal (ref , new byte [1 ],1 , new byte [1 ], 1 );
576
+ doFinal (ref , new byte [1 ], 1 , new byte [1 ], 1 );
559
577
fail ();
560
578
}
561
579
catch (Exception ex )
@@ -579,7 +597,7 @@ public void testDoFinal() throws Exception
579
597
580
598
{
581
599
initNative (ref , true , new byte [16 ], new byte [12 ], null );
582
- doFinal (ref , new byte [2 ],2 , new byte [1 ], 0 );
600
+ doFinal (ref , new byte [2 ], 2 , new byte [1 ], 0 );
583
601
fail ();
584
602
}
585
603
catch (Exception ex )
@@ -604,7 +622,7 @@ public void testDoFinal() throws Exception
604
622
605
623
{
606
624
initNative (ref , false , new byte [16 ], new byte [12 ], null );
607
- doFinal (ref , new byte [15 ],15 , new byte [1 ], 1 );
625
+ doFinal (ref , new byte [15 ], 15 , new byte [1 ], 1 );
608
626
fail ();
609
627
}
610
628
catch (Exception ex )
@@ -620,7 +638,6 @@ public void testDoFinal() throws Exception
620
638
};
621
639
622
640
623
-
624
641
new AESNativeGCMSIV () // too short decryption
625
642
{
626
643
{
@@ -629,7 +646,7 @@ public void testDoFinal() throws Exception
629
646
630
647
{
631
648
initNative (ref , false , new byte [16 ], new byte [12 ], null );
632
- doFinal (ref , new byte [17 ],17 , new byte [0 ], 0 );
649
+ doFinal (ref , new byte [17 ], 17 , new byte [0 ], 0 );
633
650
fail ();
634
651
}
635
652
catch (Exception ex )
0 commit comments