|
| 1 | +/* |
| 2 | + * Copyright (c) 2022, 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 | +/* |
| 25 | + * @test |
| 26 | + * @library /test/lib |
| 27 | + * @bug 4958071 |
| 28 | + * @summary verify InvalidParameterException for Cipher.init |
| 29 | + */ |
| 30 | + |
| 31 | +import jdk.test.lib.Utils; |
| 32 | + |
| 33 | +import javax.crypto.Cipher; |
| 34 | +import javax.crypto.KeyGenerator; |
| 35 | +import javax.crypto.SecretKey; |
| 36 | +import java.security.AlgorithmParameters; |
| 37 | +import java.security.InvalidParameterException; |
| 38 | +import java.security.SecureRandom; |
| 39 | +import java.security.cert.Certificate; |
| 40 | +import java.security.spec.AlgorithmParameterSpec; |
| 41 | + |
| 42 | +public class Test4958071 { |
| 43 | + |
| 44 | + public boolean execute() throws Exception { |
| 45 | + |
| 46 | + KeyGenerator aesKey = KeyGenerator.getInstance("AES"); |
| 47 | + aesKey.init(128); |
| 48 | + SecretKey generatedAESKey = aesKey.generateKey(); |
| 49 | + |
| 50 | + Cipher c = Cipher.getInstance("AES"); |
| 51 | + |
| 52 | + SecureRandom nullSR = null; |
| 53 | + AlgorithmParameters nullAP = null; |
| 54 | + AlgorithmParameterSpec nullAPS = null; |
| 55 | + Certificate nullCert = null; |
| 56 | + |
| 57 | + Utils.runAndCheckException(() -> c.init((Cipher.ENCRYPT_MODE - 1), |
| 58 | + generatedAESKey), InvalidParameterException.class); |
| 59 | + Utils.runAndCheckException(() -> c.init((Cipher.UNWRAP_MODE + 1), |
| 60 | + generatedAESKey), InvalidParameterException.class); |
| 61 | + Utils.runAndCheckException(() -> c.init((Cipher.ENCRYPT_MODE - 1), |
| 62 | + generatedAESKey, nullSR), InvalidParameterException.class); |
| 63 | + Utils.runAndCheckException(() -> c.init((Cipher.UNWRAP_MODE + 1), |
| 64 | + generatedAESKey, nullSR), InvalidParameterException.class); |
| 65 | + Utils.runAndCheckException(() -> c.init((Cipher.ENCRYPT_MODE - 1), |
| 66 | + generatedAESKey, nullAP), InvalidParameterException.class); |
| 67 | + Utils.runAndCheckException(() -> c.init((Cipher.UNWRAP_MODE + 1), |
| 68 | + generatedAESKey, nullAP), InvalidParameterException.class); |
| 69 | + Utils.runAndCheckException(() -> c.init((Cipher.ENCRYPT_MODE - 1), |
| 70 | + generatedAESKey, nullAP, nullSR), InvalidParameterException.class); |
| 71 | + Utils.runAndCheckException(() -> c.init((Cipher.UNWRAP_MODE + 1), |
| 72 | + generatedAESKey, nullAP, nullSR), InvalidParameterException.class); |
| 73 | + Utils.runAndCheckException(() -> c.init((Cipher.ENCRYPT_MODE - 1), |
| 74 | + generatedAESKey, nullAPS), InvalidParameterException.class); |
| 75 | + Utils.runAndCheckException(() -> c.init((Cipher.UNWRAP_MODE + 1), |
| 76 | + generatedAESKey, nullAPS), InvalidParameterException.class); |
| 77 | + Utils.runAndCheckException(() -> c.init((Cipher.ENCRYPT_MODE - 1), |
| 78 | + generatedAESKey, nullAPS, nullSR), InvalidParameterException.class); |
| 79 | + Utils.runAndCheckException(() -> c.init((Cipher.UNWRAP_MODE + 1), |
| 80 | + generatedAESKey, nullAPS, nullSR), InvalidParameterException.class); |
| 81 | + Utils.runAndCheckException(() -> c.init((Cipher.ENCRYPT_MODE - 1), |
| 82 | + nullCert), InvalidParameterException.class); |
| 83 | + Utils.runAndCheckException(() -> c.init((Cipher.UNWRAP_MODE + 1), |
| 84 | + nullCert), InvalidParameterException.class); |
| 85 | + Utils.runAndCheckException(() -> c.init((Cipher.ENCRYPT_MODE - 1), |
| 86 | + nullCert, nullSR), InvalidParameterException.class); |
| 87 | + Utils.runAndCheckException(() -> c.init((Cipher.UNWRAP_MODE + 1), |
| 88 | + nullCert, nullSR), InvalidParameterException.class); |
| 89 | + |
| 90 | + return true; |
| 91 | + } |
| 92 | + |
| 93 | + public static void main(String[] args) throws Exception { |
| 94 | + |
| 95 | + Test4958071 test = new Test4958071(); |
| 96 | + |
| 97 | + if (test.execute()) { |
| 98 | + System.out.println(test.getClass().getName() + ": passed!"); |
| 99 | + } |
| 100 | + |
| 101 | + } |
| 102 | +} |
0 commit comments