1
1
/*
2
- * Copyright (c) 2015, 2018 , Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 2015, 2024 , Oracle and/or its affiliates. All rights reserved.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
25
25
import org .openjdk .jmh .annotations .Benchmark ;
26
26
import org .openjdk .jmh .annotations .Param ;
27
27
import org .openjdk .jmh .annotations .Setup ;
28
+ import org .openjdk .jmh .infra .Blackhole ;
29
+ import java .security .GeneralSecurityException ;
30
+ import org .openjdk .jmh .annotations .Fork ;
28
31
29
32
import javax .crypto .BadPaddingException ;
30
33
import javax .crypto .Cipher ;
36
39
import java .security .NoSuchAlgorithmException ;
37
40
import java .security .spec .InvalidParameterSpecException ;
38
41
42
+ @ Fork (jvmArgsAppend = {"-Xms20g" , "-Xmx20g" , "-XX:+UseZGC" })
39
43
public class AESBench extends CryptoBase {
40
44
41
- public static final int SET_SIZE = 128 ;
45
+ public static final int SET_SIZE = 8 ;
42
46
43
47
@ Param ({"AES/ECB/NoPadding" , "AES/ECB/PKCS5Padding" , "AES/CBC/NoPadding" , "AES/CBC/PKCS5Padding" })
44
48
private String algorithm ;
@@ -53,6 +57,7 @@ public class AESBench extends CryptoBase {
53
57
byte [][] encryptedData ;
54
58
private Cipher encryptCipher ;
55
59
private Cipher decryptCipher ;
60
+ private byte [] outBuffer ;
56
61
int index = 0 ;
57
62
58
63
@ Setup
@@ -66,6 +71,7 @@ public void setup() throws NoSuchAlgorithmException, NoSuchPaddingException, Inv
66
71
decryptCipher .init (Cipher .DECRYPT_MODE , ks , encryptCipher .getParameters ());
67
72
data = fillRandom (new byte [SET_SIZE ][dataSize ]);
68
73
encryptedData = fillEncrypted (data , encryptCipher );
74
+ outBuffer = new byte [dataSize + 128 ]; // extra space for tag, etc
69
75
}
70
76
71
77
@ Benchmark
@@ -75,11 +81,25 @@ public byte[] encrypt() throws BadPaddingException, IllegalBlockSizeException {
75
81
return encryptCipher .doFinal (d );
76
82
}
77
83
84
+ @ Benchmark
85
+ public void encrypt2 (Blackhole bh ) throws GeneralSecurityException {
86
+ byte [] d = data [index ];
87
+ index = (index +1 ) % SET_SIZE ;
88
+ bh .consume (encryptCipher .doFinal (d , 0 , d .length , outBuffer ));
89
+ }
90
+
78
91
@ Benchmark
79
92
public byte [] decrypt () throws BadPaddingException , IllegalBlockSizeException {
80
93
byte [] e = encryptedData [index ];
81
94
index = (index +1 ) % SET_SIZE ;
82
95
return decryptCipher .doFinal (e );
83
96
}
84
97
98
+ @ Benchmark
99
+ public void decrypt2 (Blackhole bh ) throws GeneralSecurityException {
100
+ byte [] e = encryptedData [index ];
101
+ index = (index +1 ) % SET_SIZE ;
102
+ bh .consume (decryptCipher .doFinal (e , 0 , e .length , outBuffer ));
103
+ }
104
+
85
105
}
0 commit comments