org.bouncycastle.pqc.crypto.xmss.WOTSPlusSignature Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bcprov-jdk15on Show documentation
Show all versions of bcprov-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 and up.
package org.bouncycastle.pqc.crypto.xmss;
/**
* WOTS+ signature.
*/
final class WOTSPlusSignature
{
private byte[][] signature;
protected WOTSPlusSignature(WOTSPlusParameters params, byte[][] signature)
{
super();
if (params == null)
{
throw new NullPointerException("params == null");
}
if (signature == null)
{
throw new NullPointerException("signature == null");
}
if (XMSSUtil.hasNullPointer(signature))
{
throw new NullPointerException("signature byte array == null");
}
if (signature.length != params.getLen())
{
throw new IllegalArgumentException("wrong signature size");
}
for (int i = 0; i < signature.length; i++)
{
if (signature[i].length != params.getTreeDigestSize())
{
throw new IllegalArgumentException("wrong signature format");
}
}
this.signature = XMSSUtil.cloneArray(signature);
}
public byte[][] toByteArray()
{
return XMSSUtil.cloneArray(signature);
}
}