|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
|
|
package com.sun.crypto.provider; |
|
|
|
import java.security.Key; |
|
import java.security.PublicKey; |
|
import java.security.PrivateKey; |
|
import java.security.KeyFactory; |
|
import java.security.InvalidKeyException; |
|
import java.security.NoSuchProviderException; |
|
import java.security.NoSuchAlgorithmException; |
|
import java.security.spec.PKCS8EncodedKeySpec; |
|
import java.security.spec.X509EncodedKeySpec; |
|
import java.security.spec.InvalidKeySpecException; |
|
|
|
import javax.crypto.Cipher; |
|
import javax.crypto.CipherSpi; |
|
import javax.crypto.SecretKey; |
|
import javax.crypto.IllegalBlockSizeException; |
|
import javax.crypto.BadPaddingException; |
|
import javax.crypto.spec.SecretKeySpec; |
|
|
|
/** |
|
* This class entends the javax.crypto.CipherSpi class with a concrete |
|
* implementation of the methods for wrapping and unwrapping |
|
* keys. |
|
* |
|
* @author Sharon Liu |
|
* |
|
* |
|
* @see javax.crypto.CipherSpi |
|
* @see BlowfishCipher |
|
* @see DESCipher |
|
* @see PBEWithMD5AndDESCipher |
|
*/ |
|
|
|
public abstract class CipherWithWrappingSpi extends CipherSpi { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
protected final byte[] engineWrap(Key key) |
|
throws IllegalBlockSizeException, InvalidKeyException |
|
{ |
|
byte[] result = null; |
|
|
|
try { |
|
byte[] encodedKey = key.getEncoded(); |
|
if ((encodedKey == null) || (encodedKey.length == 0)) { |
|
throw new InvalidKeyException("Cannot get an encoding of " + |
|
"the key to be wrapped"); |
|
} |
|
|
|
result = engineDoFinal(encodedKey, 0, encodedKey.length); |
|
} catch (BadPaddingException e) { |
|
// Should never happen |
|
} |
|
|
|
return result; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
protected final Key engineUnwrap(byte[] wrappedKey, |
|
String wrappedKeyAlgorithm, |
|
int wrappedKeyType) |
|
throws InvalidKeyException, NoSuchAlgorithmException |
|
{ |
|
byte[] encodedKey; |
|
Key result = null; |
|
|
|
try { |
|
encodedKey = engineDoFinal(wrappedKey, 0, |
|
wrappedKey.length); |
|
} catch (BadPaddingException ePadding) { |
|
throw new InvalidKeyException(); |
|
} catch (IllegalBlockSizeException eBlockSize) { |
|
throw new InvalidKeyException(); |
|
} |
|
|
|
switch (wrappedKeyType) { |
|
case Cipher.SECRET_KEY: |
|
result = constructSecretKey(encodedKey, |
|
wrappedKeyAlgorithm); |
|
break; |
|
case Cipher.PRIVATE_KEY: |
|
result = constructPrivateKey(encodedKey, |
|
wrappedKeyAlgorithm); |
|
break; |
|
case Cipher.PUBLIC_KEY: |
|
result = constructPublicKey(encodedKey, |
|
wrappedKeyAlgorithm); |
|
break; |
|
} |
|
|
|
return result; |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
private final PublicKey constructPublicKey(byte[] encodedKey, |
|
String encodedKeyAlgorithm) |
|
throws InvalidKeyException, NoSuchAlgorithmException |
|
{ |
|
PublicKey key = null; |
|
|
|
try { |
|
KeyFactory keyFactory = |
|
KeyFactory.getInstance(encodedKeyAlgorithm, |
|
SunJCE.getInstance()); |
|
X509EncodedKeySpec keySpec = new X509EncodedKeySpec(encodedKey); |
|
key = keyFactory.generatePublic(keySpec); |
|
} catch (NoSuchAlgorithmException nsae) { |
|
// Try to see whether there is another |
|
|
|
try { |
|
KeyFactory keyFactory = |
|
KeyFactory.getInstance(encodedKeyAlgorithm); |
|
X509EncodedKeySpec keySpec = |
|
new X509EncodedKeySpec(encodedKey); |
|
key = keyFactory.generatePublic(keySpec); |
|
} catch (NoSuchAlgorithmException nsae2) { |
|
throw new NoSuchAlgorithmException("No installed providers " + |
|
"can create keys for the " + |
|
encodedKeyAlgorithm + |
|
"algorithm"); |
|
} catch (InvalidKeySpecException ikse2) { |
|
// Should never happen. |
|
} |
|
} catch (InvalidKeySpecException ikse) { |
|
// Should never happen. |
|
} |
|
|
|
return key; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
private final PrivateKey constructPrivateKey(byte[] encodedKey, |
|
String encodedKeyAlgorithm) |
|
throws InvalidKeyException, NoSuchAlgorithmException |
|
{ |
|
PrivateKey key = null; |
|
|
|
try { |
|
KeyFactory keyFactory = |
|
KeyFactory.getInstance(encodedKeyAlgorithm, |
|
SunJCE.getInstance()); |
|
PKCS8EncodedKeySpec keySpec = new PKCS8EncodedKeySpec(encodedKey); |
|
return keyFactory.generatePrivate(keySpec); |
|
} catch (NoSuchAlgorithmException nsae) { |
|
// Try to see whether there is another |
|
|
|
try { |
|
KeyFactory keyFactory = |
|
KeyFactory.getInstance(encodedKeyAlgorithm); |
|
PKCS8EncodedKeySpec keySpec = |
|
new PKCS8EncodedKeySpec(encodedKey); |
|
key = keyFactory.generatePrivate(keySpec); |
|
} catch (NoSuchAlgorithmException nsae2) { |
|
throw new NoSuchAlgorithmException("No installed providers " + |
|
"can create keys for the " + |
|
encodedKeyAlgorithm + |
|
"algorithm"); |
|
} catch (InvalidKeySpecException ikse2) { |
|
// Should never happen. |
|
} |
|
} catch (InvalidKeySpecException ikse) { |
|
// Should never happen. |
|
} |
|
|
|
return key; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
private final SecretKey constructSecretKey(byte[] encodedKey, |
|
String encodedKeyAlgorithm) |
|
{ |
|
return (new SecretKeySpec(encodedKey, encodedKeyAlgorithm)); |
|
} |
|
} |