Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/jdk17u
Path: blob/master/test/jdk/com/sun/crypto/provider/Cipher/AES/TestAESCipher.java
66649 views
1
/*
2
* Copyright (c) 2014, 2021, Oracle and/or its affiliates. All rights reserved.
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
*
5
* This code is free software; you can redistribute it and/or modify it
6
* under the terms of the GNU General Public License version 2 only, as
7
* published by the Free Software Foundation.
8
*
9
* This code is distributed in the hope that it will be useful, but WITHOUT
10
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12
* version 2 for more details (a copy is included in the LICENSE file that
13
* accompanied this code).
14
*
15
* You should have received a copy of the GNU General Public License version
16
* 2 along with this work; if not, write to the Free Software Foundation,
17
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18
*
19
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20
* or visit www.oracle.com if you need additional information or have any
21
* questions.
22
*/
23
24
import java.security.InvalidAlgorithmParameterException;
25
import java.security.InvalidKeyException;
26
import java.security.NoSuchAlgorithmException;
27
import java.security.NoSuchProviderException;
28
import java.security.spec.AlgorithmParameterSpec;
29
import java.util.HexFormat;
30
import javax.crypto.BadPaddingException;
31
import javax.crypto.Cipher;
32
import javax.crypto.IllegalBlockSizeException;
33
import javax.crypto.NoSuchPaddingException;
34
import javax.crypto.SecretKey;
35
import javax.crypto.ShortBufferException;
36
import javax.crypto.spec.GCMParameterSpec;
37
import javax.crypto.spec.IvParameterSpec;
38
import javax.crypto.spec.SecretKeySpec;
39
40
/**
41
* @test
42
* @bug 8043836
43
* @summary Test AES ciphers with different modes and padding schemes (ECB mode
44
* doesn't use IV).
45
* @author Liwen Wang
46
* @author Parag Salvi
47
*/
48
public class TestAESCipher {
49
50
private static final String ALGORITHM = "AES";
51
private static final String PROVIDER = "SunJCE";
52
private static final String[] MODES = { "ECb", "CbC", "CTR", "PCBC", "OFB",
53
"OFB150", "cFB", "CFB7", "cFB8", "cFB16", "cFB24", "cFB32",
54
"Cfb40", "cfB48", "cfB56", "cfB64", "cfB72", "cfB80", "cfB88",
55
"cfB96", "cfb104", "cfB112", "cfB120", "OFB8", "OFB16", "OFB24",
56
"OFB32", "OFB40", "OFB48", "OFB56", "OFB64", "OFB72", "OFB80",
57
"OFB88", "OFB96", "OFB104", "OFB112", "OFB120", "GCM" };
58
private static final String[] PADDING = { "NoPadding", "PKCS5Padding" };
59
private static final int KEY_LENGTH = 16;
60
static byte[] plainText = new byte[128];
61
static byte[] key = new byte[KEY_LENGTH];
62
63
public static void main(String argv[]) throws Exception {
64
TestAESCipher test = new TestAESCipher();
65
for (String mode : MODES) {
66
int padKinds = 1;
67
if (mode.equalsIgnoreCase("ECB") || mode.equalsIgnoreCase("PCBC")
68
|| mode.equalsIgnoreCase("CBC")) {
69
padKinds = PADDING.length;
70
}
71
72
for (int k = 0; k < padKinds; k++) {
73
test.runTest(ALGORITHM, mode, PADDING[k]);
74
}
75
}
76
}
77
78
79
public void runTest(String algo, String mo, String pad) throws Exception {
80
Cipher ci;
81
System.out.println("Testing " + algo + "/" + mo + "/" + pad);
82
83
byte[] iv = new byte[16];
84
AlgorithmParameterSpec aps = new GCMParameterSpec(128, iv);
85
SecretKey key = new SecretKeySpec(this.key, 0, KEY_LENGTH,"AES");
86
87
try {
88
// Initialization
89
ci = Cipher.getInstance(algo + "/" + mo + "/" + pad, PROVIDER);
90
91
// encrypt
92
if (mo.equalsIgnoreCase("GCM")) {
93
ci.init(Cipher.ENCRYPT_MODE, key, aps);
94
} else if (mo.equalsIgnoreCase("ECB")) {
95
ci.init(Cipher.ENCRYPT_MODE, key, (AlgorithmParameterSpec)null);
96
} else {
97
ci.init(Cipher.ENCRYPT_MODE, key, new IvParameterSpec(iv));
98
}
99
100
byte[] cipherText = new byte[ci.getOutputSize(plainText.length)];
101
int offset = ci.update(plainText, 0, plainText.length, cipherText,
102
0);
103
ci.doFinal(cipherText, offset);
104
105
if (!mo.equalsIgnoreCase("ECB")) {
106
iv = ci.getIV();
107
aps = new IvParameterSpec(iv);
108
} else {
109
aps = null;
110
}
111
112
if (!mo.equalsIgnoreCase("GCM")) {
113
ci.init(Cipher.DECRYPT_MODE, key, aps);
114
} else {
115
ci.init(Cipher.DECRYPT_MODE, key, ci.getParameters());
116
}
117
118
byte[] recoveredText = new byte[ci.getOutputSize(cipherText.length)];
119
int len = ci.doFinal(cipherText, 0, cipherText.length,
120
recoveredText);
121
122
// Comparison
123
if (!java.util.Arrays.equals(plainText, 0 , plainText.length,
124
recoveredText, 0, len)) {
125
System.out.println("Original: ");
126
System.out.println(HexFormat.of().formatHex(plainText));
127
System.out.println("Recovered: ");
128
System.out.println(HexFormat.of().
129
formatHex(recoveredText, 0, len));
130
throw new RuntimeException("Original text is not equal with " +
131
"recovered text, with mode:" + mo);
132
}
133
134
} catch (NoSuchAlgorithmException e) {
135
//CFB7 and OFB150 are for negative testing
136
if (!mo.equalsIgnoreCase("CFB7") && !mo.equalsIgnoreCase("OFB150")) {
137
System.out.println("Unexpected NoSuchAlgorithmException with" +
138
" mode: " + mo);
139
throw new RuntimeException("Test failed!");
140
}
141
} catch ( NoSuchProviderException | NoSuchPaddingException
142
| InvalidKeyException | InvalidAlgorithmParameterException
143
| ShortBufferException | IllegalBlockSizeException
144
| BadPaddingException e) {
145
System.out.println("Test failed!");
146
throw e;
147
}
148
}
149
}
150
151