/*
* Copyright ( c ) 2003 , 2020 , 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 .
*/
/*
* @ test
* @ bug 4532506 4999599
* @ summary Serializing KeyPair on one VM ( Sun ) ,
* and Deserializing on another ( IBM ) fails
* @ run main / othervm / java . security . policy = Serial . policy Serial
*/
import java.io.*;
import java.math.BigInteger;
import java.security.*;
import javax.crypto.*;
import javax.crypto.spec.*;
public class Serial {
// providers
private static final String SUN = "SUN" ;
private static final String RSA = "SunRsaSign" ;
private static final String JCE = "SunJCE" ;
public static void main(String[] args) throws Exception {
// generate DSA key pair
KeyPairGenerator kpg = KeyPairGenerator.getInstance("DSA" , SUN);
kpg.initialize(512 );
KeyPair dsaKp = kpg.genKeyPair();
// serialize DSA key pair
ByteArrayOutputStream baos = new ByteArrayOutputStream();
ObjectOutputStream oos = new ObjectOutputStream(baos);
oos.writeObject(dsaKp);
oos.close();
// deserialize DSA key pair
ObjectInputStream ois = new ObjectInputStream
(new ByteArrayInputStream(baos.toByteArray()));
KeyPair dsaKp2 = (KeyPair)ois.readObject();
ois.close();
if (!dsaKp2.getPublic().equals(dsaKp.getPublic()) ||
!dsaKp2.getPrivate().equals(dsaKp.getPrivate())) {
throw new SecurityException("DSA test failed" );
}
// generate RSA key pair
kpg = KeyPairGenerator.getInstance("RSA" , RSA);
kpg.initialize(512 );
KeyPair rsaKp = kpg.genKeyPair();
// serialize RSA key pair
baos.reset();
oos = new ObjectOutputStream(baos);
oos.writeObject(rsaKp);
oos.close();
// deserialize RSA key pair
ois = new ObjectInputStream
(new ByteArrayInputStream(baos.toByteArray()));
KeyPair rsaKp2 = (KeyPair)ois.readObject();
ois.close();
if (!rsaKp2.getPublic().equals(rsaKp.getPublic()) ||
!rsaKp2.getPrivate().equals(rsaKp.getPrivate())) {
throw new SecurityException("RSA test failed" );
}
// generate DH key pair
kpg = KeyPairGenerator.getInstance("DiffieHellman" , JCE);
kpg.initialize(new DHParameterSpec(skip1024Modulus, skip1024Base));
KeyPair dhKp = kpg.genKeyPair();
// serialize DH key pair
baos.reset();
oos = new ObjectOutputStream(baos);
oos.writeObject(dhKp);
oos.close();
// deserialize DH key pair
ois = new ObjectInputStream
(new ByteArrayInputStream(baos.toByteArray()));
KeyPair dhKp2 = (KeyPair)ois.readObject();
ois.close();
if (!dhKp2.getPublic().equals(dhKp.getPublic()) ||
!dhKp2.getPrivate().equals(dhKp.getPrivate())) {
throw new SecurityException("DH test failed" );
}
// generate RC5 key
SecretKeySpec rc5Key = new SecretKeySpec(new byte [128 ], "RC5" );
// serialize RC5 key
baos.reset();
oos = new ObjectOutputStream(baos);
oos.writeObject(rc5Key);
oos.close();
// deserialize RC5 key
ois = new ObjectInputStream
(new ByteArrayInputStream(baos.toByteArray()));
SecretKey rc5Key2 = (SecretKey)ois.readObject();
ois.close();
if (!rc5Key.equals(rc5Key2)) {
throw new SecurityException("RC5 test failed" );
}
// generate PBE key
// Salt
byte [] salt = {
(byte )0 xc7, (byte )0 x73, (byte )0 x21, (byte )0 x8c,
(byte )0 x7e, (byte )0 xc8, (byte )0 xee, (byte )0 x99
};
// Iteration count
int count = 20 ;
// Create PBE parameter set
PBEParameterSpec pbeParamSpec = new PBEParameterSpec(salt, count);
char [] password = new char [] {'f' , 'o' , 'o' };
PBEKeySpec pbeKeySpec = new PBEKeySpec(password);
SecretKeyFactory keyFac =
SecretKeyFactory.getInstance("PBEWithMD5AndDES" , JCE);
SecretKey pbeKey = keyFac.generateSecret(pbeKeySpec);
// serialize PBE key
baos.reset();
oos = new ObjectOutputStream(baos);
oos.writeObject(pbeKey);
oos.close();
// deserialize PBE key
ois = new ObjectInputStream
(new ByteArrayInputStream(baos.toByteArray()));
SecretKey pbeKey2 = (SecretKey)ois.readObject();
ois.close();
if (!pbeKey.equals(pbeKey2)) {
throw new SecurityException("PBE test failed" );
}
checkKey("AES" , 128 );
checkKey("Blowfish" , -1 );
checkKey("DES" , 56 );
checkKey("DESede" , 168 );
checkKey("HmacMD5" , -1 );
checkKey("HmacSHA1" , -1 );
}
private static void checkKey(String algorithm, int size) throws Exception {
// generate key
KeyGenerator kg = KeyGenerator.getInstance(algorithm, JCE);
if (size > 0 ) {
kg.init(size);
}
SecretKey key = kg.generateKey();
// serialize key
ByteArrayOutputStream baos = new ByteArrayOutputStream();
ObjectOutputStream oos = new ObjectOutputStream(baos);
oos.writeObject(key);
oos.close();
// deserialize key
ObjectInputStream ois = new ObjectInputStream
(new ByteArrayInputStream(baos.toByteArray()));
SecretKey key2 = (SecretKey)ois.readObject();
ois.close();
if (!key.equals(key2)) {
throw new SecurityException(algorithm + " test failed" );
}
}
// The 1024 bit Diffie-Hellman modulus values used by SKIP
private static final byte skip1024ModulusBytes[] = {
(byte )0 xF4, (byte )0 x88, (byte )0 xFD, (byte )0 x58,
(byte )0 x4E, (byte )0 x49, (byte )0 xDB, (byte )0 xCD,
(byte )0 x20, (byte )0 xB4, (byte )0 x9D, (byte )0 xE4,
(byte )0 x91, (byte )0 x07, (byte )0 x36, (byte )0 x6B,
(byte )0 x33, (byte )0 x6C, (byte )0 x38, (byte )0 x0D,
(byte )0 x45, (byte )0 x1D, (byte )0 x0F, (byte )0 x7C,
(byte )0 x88, (byte )0 xB3, (byte )0 x1C, (byte )0 x7C,
(byte )0 x5B, (byte )0 x2D, (byte )0 x8E, (byte )0 xF6,
(byte )0 xF3, (byte )0 xC9, (byte )0 x23, (byte )0 xC0,
(byte )0 x43, (byte )0 xF0, (byte )0 xA5, (byte )0 x5B,
(byte )0 x18, (byte )0 x8D, (byte )0 x8E, (byte )0 xBB,
(byte )0 x55, (byte )0 x8C, (byte )0 xB8, (byte )0 x5D,
(byte )0 x38, (byte )0 xD3, (byte )0 x34, (byte )0 xFD,
(byte )0 x7C, (byte )0 x17, (byte )0 x57, (byte )0 x43,
(byte )0 xA3, (byte )0 x1D, (byte )0 x18, (byte )0 x6C,
(byte )0 xDE, (byte )0 x33, (byte )0 x21, (byte )0 x2C,
(byte )0 xB5, (byte )0 x2A, (byte )0 xFF, (byte )0 x3C,
(byte )0 xE1, (byte )0 xB1, (byte )0 x29, (byte )0 x40,
(byte )0 x18, (byte )0 x11, (byte )0 x8D, (byte )0 x7C,
(byte )0 x84, (byte )0 xA7, (byte )0 x0A, (byte )0 x72,
(byte )0 xD6, (byte )0 x86, (byte )0 xC4, (byte )0 x03,
(byte )0 x19, (byte )0 xC8, (byte )0 x07, (byte )0 x29,
(byte )0 x7A, (byte )0 xCA, (byte )0 x95, (byte )0 x0C,
(byte )0 xD9, (byte )0 x96, (byte )0 x9F, (byte )0 xAB,
(byte )0 xD0, (byte )0 x0A, (byte )0 x50, (byte )0 x9B,
(byte )0 x02, (byte )0 x46, (byte )0 xD3, (byte )0 x08,
(byte )0 x3D, (byte )0 x66, (byte )0 xA4, (byte )0 x5D,
(byte )0 x41, (byte )0 x9F, (byte )0 x9C, (byte )0 x7C,
(byte )0 xBD, (byte )0 x89, (byte )0 x4B, (byte )0 x22,
(byte )0 x19, (byte )0 x26, (byte )0 xBA, (byte )0 xAB,
(byte )0 xA2, (byte )0 x5E, (byte )0 xC3, (byte )0 x55,
(byte )0 xE9, (byte )0 x2F, (byte )0 x78, (byte )0 xC7
};
// The SKIP 1024 bit modulus
private static final BigInteger skip1024Modulus
= new BigInteger(1 , skip1024ModulusBytes);
// The base used with the SKIP 1024 bit modulus
private static final BigInteger skip1024Base = BigInteger.valueOf(2 );
}
Messung V0.5 in Prozent C=95 H=89 G=91
¤ Dauer der Verarbeitung: 0.4 Sekunden
¤
*© Formatika GbR, Deutschland