org.bouncycastle.pqc.crypto.xmss.XMSSKeyParameters 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;
import org.bouncycastle.crypto.params.AsymmetricKeyParameter;
public class XMSSKeyParameters
extends AsymmetricKeyParameter
{
public static final String SHA_256 = "SHA-256";
public static final String SHA_512 = "SHA-512";
public static final String SHAKE128 = "SHAKE128";
public static final String SHAKE256 = "SHAKE256";
private final String treeDigest;
public XMSSKeyParameters(boolean isPrivateKey, String treeDigest)
{
super(isPrivateKey);
this.treeDigest = treeDigest;
}
public String getTreeDigest()
{
return treeDigest;
}
}