Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/openjdk-multiarch-jdk8u
Path: blob/aarch64-shenandoah-jdk8u272-b10/jdk/test/sun/security/pkcs11/Cipher/TestRawRSACipher.java
38855 views
1
/*
2
* Copyright (c) 2011, 2016, 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
* @bug 6994008
27
* @summary basic test for RSA/ECB/NoPadding cipher
28
* @author Valerie Peng
29
* @library ..
30
* @key randomness
31
* @run main/othervm TestRawRSACipher
32
* @run main/othervm TestRawRSACipher sm
33
*/
34
35
import java.security.GeneralSecurityException;
36
import java.security.KeyPair;
37
import java.security.KeyPairGenerator;
38
import java.security.Provider;
39
import java.util.Arrays;
40
import java.util.Random;
41
import javax.crypto.Cipher;
42
43
public class TestRawRSACipher extends PKCS11Test {
44
45
@Override
46
public void main(Provider p) throws Exception {
47
try {
48
Cipher.getInstance("RSA/ECB/NoPadding", p);
49
} catch (GeneralSecurityException e) {
50
System.out.println("Not supported by provider, skipping");
51
return;
52
}
53
54
final int KEY_LEN = 1024;
55
KeyPairGenerator kpGen = KeyPairGenerator.getInstance("RSA", p);
56
kpGen.initialize(KEY_LEN);
57
KeyPair kp = kpGen.generateKeyPair();
58
Random random = new Random();
59
byte[] plainText, cipherText, recoveredText;
60
plainText = new byte[KEY_LEN/8];
61
random.nextBytes(plainText);
62
plainText[0] = 0; // to ensure that it's less than modulus
63
64
Cipher c1 = Cipher.getInstance("RSA/ECB/NoPadding", p);
65
Cipher c2 = Cipher.getInstance("RSA/ECB/NoPadding", "SunJCE");
66
67
c1.init(Cipher.ENCRYPT_MODE, kp.getPublic());
68
c2.init(Cipher.DECRYPT_MODE, kp.getPrivate());
69
70
cipherText = c1.doFinal(plainText);
71
recoveredText = c2.doFinal(cipherText);
72
if (!Arrays.equals(plainText, recoveredText)) {
73
throw new RuntimeException("E/D Test against SunJCE Failed!");
74
}
75
76
c2.init(Cipher.ENCRYPT_MODE, kp.getPublic());
77
c1.init(Cipher.DECRYPT_MODE, kp.getPrivate());
78
cipherText = c2.doFinal(plainText);
79
recoveredText = c1.doFinal(cipherText);
80
if (!Arrays.equals(plainText, recoveredText)) {
81
throw new RuntimeException("D/E Test against SunJCE Failed!");
82
}
83
84
System.out.println("Test Passed");
85
}
86
87
public static void main(String[] args) throws Exception {
88
main(new TestRawRSACipher(), args);
89
}
90
}
91
92