1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
|
/*
* Copyright (c) 2021, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
import javax.crypto.SecretKey;
import javax.crypto.spec.SecretKeySpec;
import java.security.Key;
import java.security.KeyFactory;
import java.security.KeyPair;
import java.security.KeyPairGenerator;
import java.security.Provider;
import java.security.Security;
import java.security.spec.PKCS8EncodedKeySpec;
import java.security.spec.X509EncodedKeySpec;
import java.util.Arrays;
import java.util.LinkedList;
import java.util.List;
import javax.crypto.KeyGenerator;
/*
* @test
* @bug 8185127
* @summary Test key comparison for the Keys generated through KeyGenerator
* @run main CompareKeys
*/
public class CompareKeys {
public static void main(String[] args) throws Exception {
for (KeygenAlgo alg : getSupportedAlgo("KeyGenerator")) {
System.out.printf("Verifying provider %s and algorithm %s%n",
alg.provider().getName(), alg.algoName());
SecretKey k = genSecretKey(alg.algoName(), alg.provider());
checkKeyEquality(k, copy(alg.algoName(), k));
}
for (KeygenAlgo alg : getSupportedAlgo("KeyPairGenerator")) {
System.out.printf("Verifying provider %s and algorithm %s%n",
alg.provider().getName(), alg.algoName());
KeyPair kp = genKeyPair(alg.algoName(), alg.provider());
checkKeyPairEquality(kp, copy(alg.algoName(), kp));
}
System.out.println("Done!");
}
@SuppressWarnings("preview")
private record KeygenAlgo(String algoName, Provider provider) {
}
private static void checkKeyPairEquality(KeyPair origkp, KeyPair copykp)
throws Exception {
checkKeyEquality(origkp.getPrivate(), copykp.getPrivate());
checkKeyEquality(origkp.getPublic(), copykp.getPublic());
}
/**
* Compare original Key with another copy.
*/
private static void checkKeyEquality(Key origKey, Key copyKey) {
if ((origKey.equals(copyKey)
&& origKey.hashCode() == copyKey.hashCode()
&& Arrays.equals(origKey.getEncoded(), copyKey.getEncoded())
&& origKey.getFormat().equals(copyKey.getFormat()))) {
System.out.printf("%s equality check Passed%n",
origKey.getClass().getName());
} else {
System.out.println("Result- equals: "
+ origKey.equals(copyKey));
System.out.println("Result- hashCode: "
+ (origKey.hashCode() == copyKey.hashCode()));
System.out.println("Result- encoded check: " + Arrays.equals(
origKey.getEncoded(), copyKey.getEncoded()));
System.out.println("Result- format check: "
+ origKey.getFormat().equals(copyKey.getFormat()));
throw new RuntimeException("Key inequality found");
}
}
private static Key copy(String algo, Key key) throws Exception {
return new SecretKeySpec(key.getEncoded(), algo);
}
private static KeyPair copy(String algo, KeyPair kp) throws Exception {
KeyFactory kf = KeyFactory.getInstance(algo);
return new KeyPair(
kf.generatePublic(
new X509EncodedKeySpec(kp.getPublic().getEncoded())),
kf.generatePrivate(
new PKCS8EncodedKeySpec(kp.getPrivate().getEncoded())));
}
private static List<KeygenAlgo> getSupportedAlgo(String type)
throws Exception {
List<KeygenAlgo> kgs = new LinkedList<>();
for (Provider p : Security.getProviders()) {
for (Provider.Service s : p.getServices()) {
// Ignore the algorithms from the list which require
// pre-initialization to make the Test generic across algorithms.
// SunMSCAPI provider is ignored too because of incompatibilty
// for serialization and with PKCS8EncodedKeySpec for certain
// algorithms like RSA.
if (s.getType().contains(type)
&& !((s.getAlgorithm().startsWith("SunTls"))
|| s.getProvider().getName().equals("SunMSCAPI"))) {
kgs.add(new KeygenAlgo(s.getAlgorithm(), s.getProvider()));
}
}
}
return kgs;
}
public static SecretKey genSecretKey(String algoName, Provider provider)
throws Exception {
return KeyGenerator.getInstance(algoName, provider).generateKey();
}
public static KeyPair genKeyPair(String algoName, Provider provider)
throws Exception {
return KeyPairGenerator.getInstance(algoName, provider)
.generateKeyPair();
}
}
|