package org.bouncycastle.pqc.jcajce.provider.xmss;

import java.security.InvalidKeyException;
import java.security.PrivateKey;
import java.security.PublicKey;
import java.security.SecureRandom;
import java.security.Signature;
import java.security.SignatureException;
import java.security.spec.AlgorithmParameterSpec;

import org.bouncycastle.asn1.ASN1ObjectIdentifier;
import org.bouncycastle.crypto.CipherParameters;
import org.bouncycastle.crypto.Digest;
import org.bouncycastle.crypto.digests.NullDigest;
import org.bouncycastle.crypto.digests.SHA256Digest;
import org.bouncycastle.crypto.digests.SHA512Digest;
import org.bouncycastle.crypto.digests.SHAKEDigest;
import org.bouncycastle.crypto.params.ParametersWithRandom;
import org.bouncycastle.pqc.crypto.xmss.XMSSMTPrivateKeyParameters;
import org.bouncycastle.pqc.crypto.xmss.XMSSMTSigner;
import org.bouncycastle.pqc.jcajce.interfaces.StateAwareSignature;

public class XMSSMTSignatureSpi
    extends Signature
    implements StateAwareSignature
{
    protected XMSSMTSignatureSpi(String algorithm)
    {
        super(algorithm);
    }

    private Digest digest;
    private XMSSMTSigner signer;
    private ASN1ObjectIdentifier treeDigest;
    private SecureRandom random;

    protected XMSSMTSignatureSpi(String sigName, Digest digest, XMSSMTSigner signer)
    {
        super(sigName);

        this.digest = digest;
        this.signer = signer;
    }

    protected void engineInitVerify(PublicKey publicKey)
        throws InvalidKeyException
    {
        if (publicKey instanceof BCXMSSMTPublicKey)
        {
            CipherParameters param = ((BCXMSSMTPublicKey)publicKey).getKeyParams();

            treeDigest = null;
            digest.reset();
            signer.init(false, param);
        }
        else
        {
            throw new InvalidKeyException("unknown public key passed to XMSSMT");
        }
    }

    protected void engineInitSign(PrivateKey privateKey, SecureRandom random)
        throws InvalidKeyException
    {
        this.random = random;
        engineInitSign(privateKey);
    }

    protected void engineInitSign(PrivateKey privateKey)
        throws InvalidKeyException
    {
        if (privateKey instanceof BCXMSSMTPrivateKey)
        {
            CipherParameters param = ((BCXMSSMTPrivateKey)privateKey).getKeyParams();

            treeDigest = ((BCXMSSMTPrivateKey)privateKey).getTreeDigestOID();
            if (random != null)
            {
                param = new ParametersWithRandom(param, random);
            }

            digest.reset();
            signer.init(true, param);
        }
        else
        {
            throw new InvalidKeyException("unknown private key passed to XMSSMT");
        }
    }

    protected void engineUpdate(byte b)
        throws SignatureException
    {
        digest.update(b);
    }

    protected void engineUpdate(byte[] b, int off, int len)
        throws SignatureException
    {
        digest.update(b, off, len);
    }

    protected byte[] engineSign()
        throws SignatureException
    {
        byte[] hash = DigestUtil.getDigestResult(digest);

        try
        {
            byte[] sig = signer.generateSignature(hash);

            return sig;
        }
        catch (Exception e)
        {
            if (e instanceof IllegalStateException)
            {
                throw new SignatureException(e.getMessage());
            }
            throw new SignatureException(e.toString());
        }
    }

    protected boolean engineVerify(byte[] sigBytes)
        throws SignatureException
    {
        byte[] hash = DigestUtil.getDigestResult(digest);

        return signer.verifySignature(hash, sigBytes);
    }

    protected void engineSetParameter(AlgorithmParameterSpec params)
    {
        throw new UnsupportedOperationException("engineSetParameter unsupported");
    }

    
Deprecated:replaced with #engineSetParameter(java.security.spec.AlgorithmParameterSpec)
/** * @deprecated replaced with #engineSetParameter(java.security.spec.AlgorithmParameterSpec) */
protected void engineSetParameter(String param, Object value) { throw new UnsupportedOperationException("engineSetParameter unsupported"); }
Deprecated:
/** * @deprecated */
protected Object engineGetParameter(String param) { throw new UnsupportedOperationException("engineSetParameter unsupported"); } public boolean isSigningCapable() { return treeDigest != null && signer.getUsagesRemaining() != 0; } public PrivateKey getUpdatedPrivateKey() { if (treeDigest == null) { throw new IllegalStateException("signature object not in a signing state"); } PrivateKey rKey = new BCXMSSMTPrivateKey(treeDigest, (XMSSMTPrivateKeyParameters)signer.getUpdatedPrivateKey()); treeDigest = null; return rKey; } static public class withSha256 extends XMSSMTSignatureSpi { public withSha256() { super("XMSSMT-SHA256", new NullDigest(), new XMSSMTSigner()); } } static public class withShake128 extends XMSSMTSignatureSpi { public withShake128() { super("XMSSMT-SHAKE128", new NullDigest(), new XMSSMTSigner()); } } static public class withSha512 extends XMSSMTSignatureSpi { public withSha512() { super("XMSSMT-SHA512", new NullDigest(), new XMSSMTSigner()); } } static public class withShake256 extends XMSSMTSignatureSpi { public withShake256() { super("XMSSMT-SHAKE256", new NullDigest(), new XMSSMTSigner()); } } static public class withSha256andPrehash extends XMSSMTSignatureSpi { public withSha256andPrehash() { super("SHA256withXMSSMT-SHA256", new SHA256Digest(), new XMSSMTSigner()); } } static public class withShake128andPrehash extends XMSSMTSignatureSpi { public withShake128andPrehash() { super("SHAKE128withXMSSMT-SHAKE128", new SHAKEDigest(128), new XMSSMTSigner()); } } static public class withSha512andPrehash extends XMSSMTSignatureSpi { public withSha512andPrehash() { super("SHA512withXMSSMT-SHA512", new SHA512Digest(), new XMSSMTSigner()); } } static public class withShake256andPrehash extends XMSSMTSignatureSpi { public withShake256andPrehash() { super("SHAKE256withXMSSMT-SHAKE256", new SHAKEDigest(256), new XMSSMTSigner()); } } }