org.bouncycastle.pqc.crypto.lms.HSSSigner Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bcprov-ext-debug-jdk18on Show documentation
Show all versions of bcprov-ext-debug-jdk18on 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 Java 1.8 and later with debug enabled.
The newest version!
package org.bouncycastle.pqc.crypto.lms;
import java.io.IOException;
import org.bouncycastle.crypto.CipherParameters;
import org.bouncycastle.pqc.crypto.MessageSigner;
public class HSSSigner
implements MessageSigner
{
private HSSPrivateKeyParameters privKey;
private HSSPublicKeyParameters pubKey;
public void init(boolean forSigning, CipherParameters param)
{
if (forSigning)
{
this.privKey = (HSSPrivateKeyParameters)param;
}
else
{
this.pubKey = (HSSPublicKeyParameters)param;
}
}
public byte[] generateSignature(byte[] message)
{
try
{
return HSS.generateSignature(privKey, message).getEncoded();
}
catch (IOException e)
{
throw new IllegalStateException("unable to encode signature: " + e.getMessage());
}
}
public boolean verifySignature(byte[] message, byte[] signature)
{
try
{
return HSS.verifySignature(pubKey, HSSSignature.getInstance(signature, pubKey.getL()), message);
}
catch (IOException e)
{
throw new IllegalStateException("unable to decode signature: " + e.getMessage());
}
}
}