package sun.security.rsa;
import java.io.IOException;
import java.security.*;
import java.security.spec.*;
import sun.security.util.ObjectIdentifier;
import sun.security.x509.AlgorithmId;
public class RSAUtil {
public enum KeyType {
RSA ("RSA", AlgorithmId.RSAEncryption_oid, null),
PSS ("RSASSA-PSS", AlgorithmId.RSASSA_PSS_oid, PSSParameterSpec.class)
;
final String keyAlgo;
final ObjectIdentifier oid;
final Class<? extends AlgorithmParameterSpec> paramSpecCls;
KeyType(String keyAlgo, ObjectIdentifier oid,
Class<? extends AlgorithmParameterSpec> paramSpecCls) {
this.keyAlgo = keyAlgo;
this.oid = oid;
this.paramSpecCls = paramSpecCls;
}
public static KeyType lookup(String name) throws ProviderException {
requireNonNull(name, "Key algorithm should not be null");
if (name.indexOf("PSS") != -1) {
return PSS;
} else if (name.indexOf("RSA") != -1) {
return RSA;
} else {
throw new ProviderException("Unsupported algorithm " + name);
}
}
}
private static void requireNonNull(Object obj, String msg) {
if (obj == null) throw new ProviderException(msg);
}
public static AlgorithmParameterSpec checkParamsAgainstType(KeyType type,
AlgorithmParameterSpec paramSpec) throws ProviderException {
if (paramSpec == null) return null;
Class<? extends AlgorithmParameterSpec> expCls = type.paramSpecCls;
if (expCls == null) {
throw new ProviderException("null params expected for " +
type.keyAlgo);
} else if (!expCls.isInstance(paramSpec)) {
throw new ProviderException
(expCls + " expected for " + type.keyAlgo);
}
return paramSpec;
}
public static AlgorithmParameters getParams(KeyType type,
AlgorithmParameterSpec spec) throws ProviderException {
if (spec == null) return null;
try {
AlgorithmParameters params =
AlgorithmParameters.getInstance(type.keyAlgo);
params.init(spec);
return params;
} catch (NoSuchAlgorithmException | InvalidParameterSpecException ex) {
throw new ProviderException(ex);
}
}
public static AlgorithmId createAlgorithmId(KeyType type,
AlgorithmParameterSpec paramSpec) throws ProviderException {
checkParamsAgainstType(type, paramSpec);
ObjectIdentifier oid = type.oid;
AlgorithmParameters params = getParams(type, paramSpec);
return new AlgorithmId(oid, params);
}
public static AlgorithmParameterSpec getParamSpec(
AlgorithmParameters params) throws ProviderException {
if (params == null) return null;
String algName = params.getAlgorithm();
KeyType type = KeyType.lookup(algName);
Class<? extends AlgorithmParameterSpec> specCls = type.paramSpecCls;
if (specCls == null) {
throw new ProviderException("No params accepted for " +
type.keyAlgo);
}
try {
return params.getParameterSpec(specCls);
} catch (InvalidParameterSpecException ex) {
throw new ProviderException(ex);
}
}
public static Object[] getTypeAndParamSpec(AlgorithmId algid)
throws ProviderException {
requireNonNull(algid, "AlgorithmId should not be null");
Object[] result = new Object[2];
String algName = algid.getName();
try {
result[0] = KeyType.lookup(algName);
} catch (ProviderException pe) {
if (algName.indexOf("RSA") != -1) {
result[0] = KeyType.RSA;
} else {
throw pe;
}
}
result[1] = getParamSpec(algid.getParameters());
return result;
}
}