org.bouncycastle.pqc.jcajce.provider.util.BaseKeyFactorySpi Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of polaris-all Show documentation
Show all versions of polaris-all Show documentation
All in one project for polaris-java
package org.bouncycastle.pqc.jcajce.provider.util;
import java.security.KeyFactorySpi;
import java.security.PrivateKey;
import java.security.PublicKey;
import java.security.spec.InvalidKeySpecException;
import java.security.spec.KeySpec;
import java.security.spec.PKCS8EncodedKeySpec;
import java.security.spec.X509EncodedKeySpec;
import java.util.Set;
import org.bouncycastle.asn1.ASN1ObjectIdentifier;
import org.bouncycastle.asn1.pkcs.PrivateKeyInfo;
import org.bouncycastle.asn1.x509.SubjectPublicKeyInfo;
import org.bouncycastle.jcajce.provider.util.AsymmetricKeyInfoConverter;
public abstract class BaseKeyFactorySpi
extends KeyFactorySpi
implements AsymmetricKeyInfoConverter
{
private final Set keyOids;
private final ASN1ObjectIdentifier keyOid;
protected BaseKeyFactorySpi(Set keyOids)
{
this.keyOid = null;
this.keyOids = keyOids;
}
protected BaseKeyFactorySpi(ASN1ObjectIdentifier keyOid)
{
this.keyOid = keyOid;
this.keyOids = null;
}
public PrivateKey engineGeneratePrivate(KeySpec keySpec)
throws InvalidKeySpecException
{
if (keySpec instanceof PKCS8EncodedKeySpec)
{
// get the DER-encoded Key according to PKCS#8 from the spec
byte[] encKey = ((PKCS8EncodedKeySpec)keySpec).getEncoded();
try
{
PrivateKeyInfo keyInfo = PrivateKeyInfo.getInstance(encKey);
checkAlgorithm(keyInfo.getPrivateKeyAlgorithm().getAlgorithm());
return generatePrivate(keyInfo);
}
catch (Exception e)
{
throw new InvalidKeySpecException(e.toString());
}
}
throw new InvalidKeySpecException("Unsupported key specification: "
+ keySpec.getClass() + ".");
}
public PublicKey engineGeneratePublic(KeySpec keySpec)
throws InvalidKeySpecException
{
if (keySpec instanceof X509EncodedKeySpec)
{
// get the DER-encoded Key according to X.509 from the spec
byte[] encKey = ((X509EncodedKeySpec)keySpec).getEncoded();
// decode the SubjectPublicKeyInfo data structure to the pki object
try
{
SubjectPublicKeyInfo keyInfo = SubjectPublicKeyInfo.getInstance(encKey);
checkAlgorithm(keyInfo.getAlgorithm().getAlgorithm());
return generatePublic(keyInfo);
}
catch (Exception e)
{
throw new InvalidKeySpecException(e.toString());
}
}
throw new InvalidKeySpecException("Unknown key specification: " + keySpec + ".");
}
private void checkAlgorithm(ASN1ObjectIdentifier algOid)
throws InvalidKeySpecException
{
if (keyOid != null)
{
if (!keyOid.equals(algOid))
{
throw new InvalidKeySpecException("incorrect algorithm OID for key: " + algOid);
}
}
else if (!keyOids.contains(algOid))
{
throw new InvalidKeySpecException("incorrect algorithm OID for key: " + algOid);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy