org.bouncycastle.jcajce.provider.asymmetric.edec.SignatureSpi Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bcprov-ext-jdk15on Show documentation
Show all versions of bcprov-ext-jdk15on Show documentation
The Bouncy Castle Crypto package is a Java implementation of cryptographic algorithms. This jar contains JCE provider and lightweight API for the Bouncy Castle Cryptography APIs for JDK 1.5 to JDK 1.8. Note: this package includes the NTRU encryption algorithms.
The newest version!
package org.bouncycastle.jcajce.provider.asymmetric.edec;
import java.security.AlgorithmParameters;
import java.security.InvalidKeyException;
import java.security.InvalidParameterException;
import java.security.Key;
import java.security.PrivateKey;
import java.security.PublicKey;
import java.security.SignatureException;
import org.bouncycastle.crypto.CryptoException;
import org.bouncycastle.crypto.Signer;
import org.bouncycastle.crypto.params.AsymmetricKeyParameter;
import org.bouncycastle.crypto.params.Ed25519PrivateKeyParameters;
import org.bouncycastle.crypto.params.Ed25519PublicKeyParameters;
import org.bouncycastle.crypto.params.Ed448PrivateKeyParameters;
import org.bouncycastle.crypto.params.Ed448PublicKeyParameters;
import org.bouncycastle.crypto.signers.Ed25519Signer;
import org.bouncycastle.crypto.signers.Ed448Signer;
public class SignatureSpi
extends java.security.SignatureSpi
{
private static final byte[] EMPTY_CONTEXT = new byte[0];
private final String algorithm;
private Signer signer;
SignatureSpi(String algorithm)
{
this.algorithm = algorithm;
}
protected void engineInitVerify(PublicKey publicKey)
throws InvalidKeyException
{
AsymmetricKeyParameter pub = getLwEdDSAKeyPublic(publicKey);
if (pub instanceof Ed25519PublicKeyParameters)
{
signer = getSigner("Ed25519");
}
else if (pub instanceof Ed448PublicKeyParameters)
{
signer = getSigner("Ed448");
}
else
{
throw new IllegalStateException("unsupported public key type");
}
signer.init(false, pub);
}
protected void engineInitSign(PrivateKey privateKey)
throws InvalidKeyException
{
AsymmetricKeyParameter priv = getLwEdDSAKeyPrivate(privateKey);
if (priv instanceof Ed25519PrivateKeyParameters)
{
signer = getSigner("Ed25519");
}
else if (priv instanceof Ed448PrivateKeyParameters)
{
signer = getSigner("Ed448");
}
else
{
throw new IllegalStateException("unsupported private key type");
}
signer.init(true, priv);
}
private static AsymmetricKeyParameter getLwEdDSAKeyPrivate(Key key)
throws InvalidKeyException
{
if (key instanceof BCEdDSAPrivateKey)
{
return ((BCEdDSAPrivateKey)key).engineGetKeyParameters();
}
throw new InvalidKeyException("cannot identify EdDSA private key");
}
private static AsymmetricKeyParameter getLwEdDSAKeyPublic(Key key)
throws InvalidKeyException
{
if (key instanceof BCEdDSAPublicKey)
{
return ((BCEdDSAPublicKey)key).engineGetKeyParameters();
}
throw new InvalidKeyException("cannot identify EdDSA public key");
}
private Signer getSigner(String alg)
throws InvalidKeyException
{
if (algorithm != null && !alg.equals(algorithm))
{
throw new InvalidKeyException("inappropriate key for " + algorithm);
}
if (alg.equals("Ed448"))
{
return new Ed448Signer(EMPTY_CONTEXT);
}
else
{
return new Ed25519Signer();
}
}
protected void engineUpdate(byte b)
throws SignatureException
{
signer.update(b);
}
protected void engineUpdate(byte[] bytes, int off, int len)
throws SignatureException
{
signer.update(bytes, off, len);
}
protected byte[] engineSign()
throws SignatureException
{
try
{
return signer.generateSignature();
}
catch (CryptoException e)
{
throw new SignatureException(e.getMessage());
}
}
protected boolean engineVerify(byte[] signature)
throws SignatureException
{
return signer.verifySignature(signature);
}
protected void engineSetParameter(String s, Object o)
throws InvalidParameterException
{
throw new UnsupportedOperationException("engineSetParameter unsupported");
}
protected Object engineGetParameter(String s)
throws InvalidParameterException
{
throw new UnsupportedOperationException("engineGetParameter unsupported");
}
protected AlgorithmParameters engineGetParameters()
{
return null;
}
public final static class EdDSA
extends SignatureSpi
{
public EdDSA()
{
super(null);
}
}
public final static class Ed448
extends SignatureSpi
{
public Ed448()
{
super("Ed448");
}
}
public final static class Ed25519
extends SignatureSpi
{
public Ed25519()
{
super("Ed25519");
}
}
}