All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.bouncycastle.pqc.crypto.xmss.WOTSPlusSignature Maven / Gradle / Ivy

There is a newer version: 1.70_1
Show newest version
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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy