aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/pkix/src/main/java/org/spongycastle/openssl/jcajce/JcaPEMKeyConverter.java
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/spongycastle/pkix/src/main/java/org/spongycastle/openssl/jcajce/JcaPEMKeyConverter.java')
-rw-r--r--libraries/spongycastle/pkix/src/main/java/org/spongycastle/openssl/jcajce/JcaPEMKeyConverter.java115
1 files changed, 0 insertions, 115 deletions
diff --git a/libraries/spongycastle/pkix/src/main/java/org/spongycastle/openssl/jcajce/JcaPEMKeyConverter.java b/libraries/spongycastle/pkix/src/main/java/org/spongycastle/openssl/jcajce/JcaPEMKeyConverter.java
deleted file mode 100644
index 8fa2b93ed..000000000
--- a/libraries/spongycastle/pkix/src/main/java/org/spongycastle/openssl/jcajce/JcaPEMKeyConverter.java
+++ /dev/null
@@ -1,115 +0,0 @@
-package org.spongycastle.openssl.jcajce;
-
-import java.security.KeyFactory;
-import java.security.KeyPair;
-import java.security.NoSuchAlgorithmException;
-import java.security.NoSuchProviderException;
-import java.security.PrivateKey;
-import java.security.Provider;
-import java.security.PublicKey;
-import java.security.spec.PKCS8EncodedKeySpec;
-import java.security.spec.X509EncodedKeySpec;
-import java.util.HashMap;
-import java.util.Map;
-
-import org.spongycastle.asn1.ASN1ObjectIdentifier;
-import org.spongycastle.asn1.pkcs.PKCSObjectIdentifiers;
-import org.spongycastle.asn1.pkcs.PrivateKeyInfo;
-import org.spongycastle.asn1.x509.AlgorithmIdentifier;
-import org.spongycastle.asn1.x509.SubjectPublicKeyInfo;
-import org.spongycastle.asn1.x9.X9ObjectIdentifiers;
-import org.spongycastle.jcajce.DefaultJcaJceHelper;
-import org.spongycastle.jcajce.JcaJceHelper;
-import org.spongycastle.jcajce.NamedJcaJceHelper;
-import org.spongycastle.jcajce.ProviderJcaJceHelper;
-import org.spongycastle.openssl.PEMException;
-import org.spongycastle.openssl.PEMKeyPair;
-
-public class JcaPEMKeyConverter
-{
- private JcaJceHelper helper = new DefaultJcaJceHelper();
-
- private static final Map algorithms = new HashMap();
-
- static
- {
- algorithms.put(X9ObjectIdentifiers.id_ecPublicKey, "ECDSA");
- algorithms.put(PKCSObjectIdentifiers.rsaEncryption, "RSA");
- algorithms.put(X9ObjectIdentifiers.id_dsa, "DSA");
- }
-
- public JcaPEMKeyConverter setProvider(Provider provider)
- {
- this.helper = new ProviderJcaJceHelper(provider);
-
- return this;
- }
-
- public JcaPEMKeyConverter setProvider(String providerName)
- {
- this.helper = new NamedJcaJceHelper(providerName);
-
- return this;
- }
-
- public KeyPair getKeyPair(PEMKeyPair keyPair)
- throws PEMException
- {
- try
- {
- KeyFactory keyFactory = getKeyFactory(keyPair.getPrivateKeyInfo().getPrivateKeyAlgorithm());
-
- return new KeyPair(keyFactory.generatePublic(new X509EncodedKeySpec(keyPair.getPublicKeyInfo().getEncoded())),
- keyFactory.generatePrivate(new PKCS8EncodedKeySpec(keyPair.getPrivateKeyInfo().getEncoded())));
- }
- catch (Exception e)
- {
- throw new PEMException("unable to convert key pair: " + e.getMessage(), e);
- }
- }
-
- public PublicKey getPublicKey(SubjectPublicKeyInfo publicKeyInfo)
- throws PEMException
- {
- try
- {
- KeyFactory keyFactory = getKeyFactory(publicKeyInfo.getAlgorithm());
-
- return keyFactory.generatePublic(new X509EncodedKeySpec(publicKeyInfo.getEncoded()));
- }
- catch (Exception e)
- {
- throw new PEMException("unable to convert key pair: " + e.getMessage(), e);
- }
- }
-
- public PrivateKey getPrivateKey(PrivateKeyInfo privateKeyInfo)
- throws PEMException
- {
- try
- {
- KeyFactory keyFactory = getKeyFactory(privateKeyInfo.getPrivateKeyAlgorithm());
-
- return keyFactory.generatePrivate(new PKCS8EncodedKeySpec(privateKeyInfo.getEncoded()));
- }
- catch (Exception e)
- {
- throw new PEMException("unable to convert key pair: " + e.getMessage(), e);
- }
- }
-
- private KeyFactory getKeyFactory(AlgorithmIdentifier algId)
- throws NoSuchAlgorithmException, NoSuchProviderException
- {
- ASN1ObjectIdentifier algorithm = algId.getAlgorithm();
-
- String algName = (String)algorithms.get(algorithm);
-
- if (algName == null)
- {
- algName = algorithm.getId();
- }
-
- return helper.createKeyFactory(algName);
- }
-}