org.bouncycastle.pqc.legacy.crypto.qtesla.QTESLAPublicKeyParameters 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.legacy.crypto.qtesla;
import org.bouncycastle.crypto.params.AsymmetricKeyParameter;
import org.bouncycastle.util.Arrays;
/**
* qTESLA public key
*/
public final class QTESLAPublicKeyParameters
extends AsymmetricKeyParameter
{
/**
* qTESLA Security Category
*/
private int securityCategory;
/**
* Text of the qTESLA Public Key
*/
private byte[] publicKey;
/**
* Base constructor.
*
* @param securityCategory the security category for the passed in public key data.
* @param publicKey the public key data.
*/
public QTESLAPublicKeyParameters(int securityCategory, byte[] publicKey)
{
super(false);
if (publicKey.length != QTESLASecurityCategory.getPublicSize(securityCategory))
{
throw new IllegalArgumentException("invalid key size for security category");
}
this.securityCategory = securityCategory;
this.publicKey = Arrays.clone(publicKey);
}
/**
* Return the security category for this key.
*
* @return the key's security category.
*/
public int getSecurityCategory()
{
return this.securityCategory;
}
/**
* Return the key's public value.
*
* @return key public data.
*/
public byte[] getPublicData()
{
return Arrays.clone(publicKey);
}
}