0N/A/*
2362N/A * Copyright (c) 2003, 2004, Oracle and/or its affiliates. All rights reserved.
0N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A *
0N/A * This code is free software; you can redistribute it and/or modify it
0N/A * under the terms of the GNU General Public License version 2 only, as
0N/A * published by the Free Software Foundation.
0N/A *
0N/A * This code is distributed in the hope that it will be useful, but WITHOUT
0N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A * version 2 for more details (a copy is included in the LICENSE file that
0N/A * accompanied this code).
0N/A *
0N/A * You should have received a copy of the GNU General Public License version
0N/A * 2 along with this work; if not, write to the Free Software Foundation,
0N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A *
2362N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2362N/A * or visit www.oracle.com if you need additional information or have any
2362N/A * questions.
0N/A */
0N/A
0N/A/*
0N/A * @test
0N/A * @bug 4532506 4999599
0N/A * @summary Serializing KeyPair on one VM (Sun),
0N/A * and Deserializing on another (IBM) fails
0N/A * @run main/othervm/policy=Serial.policy Serial
0N/A */
0N/A
0N/Aimport java.io.*;
0N/Aimport java.math.BigInteger;
0N/Aimport java.security.*;
0N/Aimport javax.crypto.*;
0N/Aimport javax.crypto.spec.*;
0N/A
0N/Apublic class Serial {
0N/A
0N/A // providers
0N/A private static final String SUN = "SUN";
0N/A private static final String RSA = "SunRsaSign";
0N/A private static final String JCE = "SunJCE";
0N/A
0N/A public static void main(String[] args) throws Exception {
0N/A
0N/A // generate DSA key pair
0N/A KeyPairGenerator kpg = KeyPairGenerator.getInstance("DSA", SUN);
0N/A kpg.initialize(512);
0N/A KeyPair dsaKp = kpg.genKeyPair();
0N/A
0N/A // serialize DSA key pair
0N/A ByteArrayOutputStream baos = new ByteArrayOutputStream();
0N/A ObjectOutputStream oos = new ObjectOutputStream(baos);
0N/A oos.writeObject(dsaKp);
0N/A oos.close();
0N/A
0N/A // deserialize DSA key pair
0N/A ObjectInputStream ois = new ObjectInputStream
0N/A (new ByteArrayInputStream(baos.toByteArray()));
0N/A KeyPair dsaKp2 = (KeyPair)ois.readObject();
0N/A ois.close();
0N/A
0N/A if (!dsaKp2.getPublic().equals(dsaKp.getPublic()) ||
0N/A !dsaKp2.getPrivate().equals(dsaKp.getPrivate())) {
0N/A throw new SecurityException("DSA test failed");
0N/A }
0N/A
0N/A // generate RSA key pair
0N/A kpg = KeyPairGenerator.getInstance("RSA", RSA);
0N/A kpg.initialize(512);
0N/A KeyPair rsaKp = kpg.genKeyPair();
0N/A
0N/A // serialize RSA key pair
0N/A baos.reset();
0N/A oos = new ObjectOutputStream(baos);
0N/A oos.writeObject(rsaKp);
0N/A oos.close();
0N/A
0N/A // deserialize RSA key pair
0N/A ois = new ObjectInputStream
0N/A (new ByteArrayInputStream(baos.toByteArray()));
0N/A KeyPair rsaKp2 = (KeyPair)ois.readObject();
0N/A ois.close();
0N/A
0N/A if (!rsaKp2.getPublic().equals(rsaKp.getPublic()) ||
0N/A !rsaKp2.getPrivate().equals(rsaKp.getPrivate())) {
0N/A throw new SecurityException("RSA test failed");
0N/A }
0N/A
0N/A // exclude test is ECF provider is installed, see 4923290
0N/A if (Security.getProvider("SunPKCS11-Solaris") == null) {
0N/A // generate DH key pair
0N/A kpg = KeyPairGenerator.getInstance("DiffieHellman", JCE);
0N/A kpg.initialize(new DHParameterSpec(skip1024Modulus, skip1024Base));
0N/A KeyPair dhKp = kpg.genKeyPair();
0N/A
0N/A // serialize DH key pair
0N/A baos.reset();
0N/A oos = new ObjectOutputStream(baos);
0N/A oos.writeObject(dhKp);
0N/A oos.close();
0N/A
0N/A // deserialize DH key pair
0N/A ois = new ObjectInputStream
0N/A (new ByteArrayInputStream(baos.toByteArray()));
0N/A KeyPair dhKp2 = (KeyPair)ois.readObject();
0N/A ois.close();
0N/A
0N/A if (!dhKp2.getPublic().equals(dhKp.getPublic()) ||
0N/A !dhKp2.getPrivate().equals(dhKp.getPrivate())) {
0N/A throw new SecurityException("DH test failed");
0N/A }
0N/A }
0N/A
0N/A // generate RC5 key
0N/A SecretKeySpec rc5Key = new SecretKeySpec(new byte[128], "RC5");
0N/A
0N/A // serialize RC5 key
0N/A baos.reset();
0N/A oos = new ObjectOutputStream(baos);
0N/A oos.writeObject(rc5Key);
0N/A oos.close();
0N/A
0N/A // deserialize RC5 key
0N/A ois = new ObjectInputStream
0N/A (new ByteArrayInputStream(baos.toByteArray()));
0N/A SecretKey rc5Key2 = (SecretKey)ois.readObject();
0N/A ois.close();
0N/A
0N/A if (!rc5Key.equals(rc5Key2)) {
0N/A throw new SecurityException("RC5 test failed");
0N/A }
0N/A
0N/A // generate PBE key
0N/A
0N/A // Salt
0N/A byte[] salt = {
0N/A (byte)0xc7, (byte)0x73, (byte)0x21, (byte)0x8c,
0N/A (byte)0x7e, (byte)0xc8, (byte)0xee, (byte)0x99
0N/A };
0N/A
0N/A // Iteration count
0N/A int count = 20;
0N/A
0N/A // Create PBE parameter set
0N/A PBEParameterSpec pbeParamSpec = new PBEParameterSpec(salt, count);
0N/A
0N/A char[] password = new char[] {'f', 'o', 'o'};
0N/A PBEKeySpec pbeKeySpec = new PBEKeySpec(password);
0N/A SecretKeyFactory keyFac =
0N/A SecretKeyFactory.getInstance("PBEWithMD5AndDES", JCE);
0N/A SecretKey pbeKey = keyFac.generateSecret(pbeKeySpec);
0N/A
0N/A // serialize PBE key
0N/A baos.reset();
0N/A oos = new ObjectOutputStream(baos);
0N/A oos.writeObject(pbeKey);
0N/A oos.close();
0N/A
0N/A // deserialize PBE key
0N/A ois = new ObjectInputStream
0N/A (new ByteArrayInputStream(baos.toByteArray()));
0N/A SecretKey pbeKey2 = (SecretKey)ois.readObject();
0N/A ois.close();
0N/A
0N/A if (!pbeKey.equals(pbeKey2)) {
0N/A throw new SecurityException("PBE test failed");
0N/A }
0N/A
0N/A checkKey("AES", 128);
0N/A checkKey("Blowfish", -1);
0N/A checkKey("DES", 56);
0N/A checkKey("DESede", 168);
0N/A checkKey("HmacMD5", -1);
0N/A checkKey("HmacSHA1", -1);
0N/A }
0N/A
0N/A private static void checkKey(String algorithm, int size) throws Exception {
0N/A // generate key
0N/A KeyGenerator kg = KeyGenerator.getInstance(algorithm, JCE);
0N/A if (size > 0) {
0N/A kg.init(size);
0N/A }
0N/A SecretKey key = kg.generateKey();
0N/A
0N/A // serialize key
0N/A ByteArrayOutputStream baos = new ByteArrayOutputStream();
0N/A ObjectOutputStream oos = new ObjectOutputStream(baos);
0N/A oos.writeObject(key);
0N/A oos.close();
0N/A
0N/A // deserialize key
0N/A ObjectInputStream ois = new ObjectInputStream
0N/A (new ByteArrayInputStream(baos.toByteArray()));
0N/A SecretKey key2 = (SecretKey)ois.readObject();
0N/A ois.close();
0N/A
0N/A if (!key.equals(key2)) {
0N/A throw new SecurityException(algorithm + " test failed");
0N/A }
0N/A }
0N/A
0N/A // The 1024 bit Diffie-Hellman modulus values used by SKIP
0N/A private static final byte skip1024ModulusBytes[] = {
0N/A (byte)0xF4, (byte)0x88, (byte)0xFD, (byte)0x58,
0N/A (byte)0x4E, (byte)0x49, (byte)0xDB, (byte)0xCD,
0N/A (byte)0x20, (byte)0xB4, (byte)0x9D, (byte)0xE4,
0N/A (byte)0x91, (byte)0x07, (byte)0x36, (byte)0x6B,
0N/A (byte)0x33, (byte)0x6C, (byte)0x38, (byte)0x0D,
0N/A (byte)0x45, (byte)0x1D, (byte)0x0F, (byte)0x7C,
0N/A (byte)0x88, (byte)0xB3, (byte)0x1C, (byte)0x7C,
0N/A (byte)0x5B, (byte)0x2D, (byte)0x8E, (byte)0xF6,
0N/A (byte)0xF3, (byte)0xC9, (byte)0x23, (byte)0xC0,
0N/A (byte)0x43, (byte)0xF0, (byte)0xA5, (byte)0x5B,
0N/A (byte)0x18, (byte)0x8D, (byte)0x8E, (byte)0xBB,
0N/A (byte)0x55, (byte)0x8C, (byte)0xB8, (byte)0x5D,
0N/A (byte)0x38, (byte)0xD3, (byte)0x34, (byte)0xFD,
0N/A (byte)0x7C, (byte)0x17, (byte)0x57, (byte)0x43,
0N/A (byte)0xA3, (byte)0x1D, (byte)0x18, (byte)0x6C,
0N/A (byte)0xDE, (byte)0x33, (byte)0x21, (byte)0x2C,
0N/A (byte)0xB5, (byte)0x2A, (byte)0xFF, (byte)0x3C,
0N/A (byte)0xE1, (byte)0xB1, (byte)0x29, (byte)0x40,
0N/A (byte)0x18, (byte)0x11, (byte)0x8D, (byte)0x7C,
0N/A (byte)0x84, (byte)0xA7, (byte)0x0A, (byte)0x72,
0N/A (byte)0xD6, (byte)0x86, (byte)0xC4, (byte)0x03,
0N/A (byte)0x19, (byte)0xC8, (byte)0x07, (byte)0x29,
0N/A (byte)0x7A, (byte)0xCA, (byte)0x95, (byte)0x0C,
0N/A (byte)0xD9, (byte)0x96, (byte)0x9F, (byte)0xAB,
0N/A (byte)0xD0, (byte)0x0A, (byte)0x50, (byte)0x9B,
0N/A (byte)0x02, (byte)0x46, (byte)0xD3, (byte)0x08,
0N/A (byte)0x3D, (byte)0x66, (byte)0xA4, (byte)0x5D,
0N/A (byte)0x41, (byte)0x9F, (byte)0x9C, (byte)0x7C,
0N/A (byte)0xBD, (byte)0x89, (byte)0x4B, (byte)0x22,
0N/A (byte)0x19, (byte)0x26, (byte)0xBA, (byte)0xAB,
0N/A (byte)0xA2, (byte)0x5E, (byte)0xC3, (byte)0x55,
0N/A (byte)0xE9, (byte)0x2F, (byte)0x78, (byte)0xC7
0N/A };
0N/A
0N/A // The SKIP 1024 bit modulus
0N/A private static final BigInteger skip1024Modulus
0N/A = new BigInteger(1, skip1024ModulusBytes);
0N/A
0N/A // The base used with the SKIP 1024 bit modulus
0N/A private static final BigInteger skip1024Base = BigInteger.valueOf(2);
0N/A}