org.spongycastle.jcajce.provider.asymmetric.dstu.SignatureSpiLe Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of prov Show documentation
Show all versions of prov Show documentation
Spongy Castle is a package-rename (org.bouncycastle.* to org.spongycastle.*) of Bouncy Castle
intended for the Android platform. Android unfortunately ships with a stripped-down version of
Bouncy Castle, which prevents easy upgrades - Spongy Castle overcomes this and provides a full,
up-to-date version of the Bouncy Castle cryptographic libs.
The newest version!
package org.spongycastle.jcajce.provider.asymmetric.dstu;
import java.io.IOException;
import java.security.SignatureException;
import org.spongycastle.asn1.ASN1OctetString;
import org.spongycastle.asn1.DEROctetString;
public class SignatureSpiLe
extends SignatureSpi
{
void reverseBytes(byte[] bytes)
{
byte tmp;
for (int i = 0; i < bytes.length / 2; i++)
{
tmp = bytes[i];
bytes[i] = bytes[bytes.length - 1 - i];
bytes[bytes.length - 1 - i] = tmp;
}
}
protected byte[] engineSign()
throws SignatureException
{
byte[] signature = ASN1OctetString.getInstance(super.engineSign()).getOctets();
reverseBytes(signature);
try
{
return (new DEROctetString(signature)).getEncoded();
}
catch (Exception e)
{
throw new SignatureException(e.toString());
}
}
protected boolean engineVerify(
byte[] sigBytes)
throws SignatureException
{
byte[] bytes = null;
try
{
bytes = ((ASN1OctetString)ASN1OctetString.fromByteArray(sigBytes)).getOctets();
}
catch (IOException e)
{
throw new SignatureException("error decoding signature bytes.");
}
reverseBytes(bytes);
try
{
return super.engineVerify((new DEROctetString(bytes)).getEncoded());
}
catch (SignatureException e)
{
throw e;
}
catch (Exception e)
{
throw new SignatureException(e.toString());
}
}
}