org.spongycastle.pqc.jcajce.provider.gmss.BCGMSSPublicKey Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of prov Show documentation
Show all versions of prov Show documentation
Spongy Castle is a package-rename (org.bouncycastle.* to org.spongycastle.*) of Bouncy Castle
intended for the Android platform. Android unfortunately ships with a stripped-down version of
Bouncy Castle, which prevents easy upgrades - Spongy Castle overcomes this and provides a full,
up-to-date version of the Bouncy Castle cryptographic libs.
The newest version!
package org.spongycastle.pqc.jcajce.provider.gmss;
import java.security.PublicKey;
import org.spongycastle.asn1.x509.AlgorithmIdentifier;
import org.spongycastle.crypto.CipherParameters;
import org.spongycastle.pqc.asn1.GMSSPublicKey;
import org.spongycastle.pqc.asn1.PQCObjectIdentifiers;
import org.spongycastle.pqc.asn1.ParSet;
import org.spongycastle.pqc.crypto.gmss.GMSSParameters;
import org.spongycastle.pqc.crypto.gmss.GMSSPublicKeyParameters;
import org.spongycastle.pqc.jcajce.provider.util.KeyUtil;
import org.spongycastle.util.encoders.Hex;
/**
* This class implements the GMSS public key and is usually initiated by the GMSSKeyPairGenerator.
*
* @see org.spongycastle.pqc.crypto.gmss.GMSSKeyPairGenerator
*/
public class BCGMSSPublicKey
implements CipherParameters, PublicKey
{
/**
*
*/
private static final long serialVersionUID = 1L;
/**
* The GMSS public key
*/
private byte[] publicKeyBytes;
/**
* The GMSSParameterSet
*/
private GMSSParameters gmssParameterSet;
private GMSSParameters gmssParams;
/**
* The constructor
*
* @param pub a raw GMSS public key
* @param gmssParameterSet an instance of GMSS Parameterset
* @see org.spongycastle.pqc.crypto.gmss.GMSSKeyPairGenerator
*/
public BCGMSSPublicKey(byte[] pub, GMSSParameters gmssParameterSet)
{
this.gmssParameterSet = gmssParameterSet;
this.publicKeyBytes = pub;
}
public BCGMSSPublicKey(
GMSSPublicKeyParameters params)
{
this(params.getPublicKey(), params.getParameters());
}
/**
* Returns the name of the algorithm
*
* @return "GMSS"
*/
public String getAlgorithm()
{
return "GMSS";
}
/**
* @return The GMSS public key byte array
*/
public byte[] getPublicKeyBytes()
{
return publicKeyBytes;
}
/**
* @return The GMSS Parameterset
*/
public GMSSParameters getParameterSet()
{
return gmssParameterSet;
}
/**
* Returns a human readable form of the GMSS public key
*
* @return A human readable form of the GMSS public key
*/
public String toString()
{
String out = "GMSS public key : "
+ new String(Hex.encode(publicKeyBytes)) + "\n"
+ "Height of Trees: \n";
for (int i = 0; i < gmssParameterSet.getHeightOfTrees().length; i++)
{
out = out + "Layer " + i + " : "
+ gmssParameterSet.getHeightOfTrees()[i]
+ " WinternitzParameter: "
+ gmssParameterSet.getWinternitzParameter()[i] + " K: "
+ gmssParameterSet.getK()[i] + "\n";
}
return out;
}
public byte[] getEncoded()
{
return KeyUtil.getEncodedSubjectPublicKeyInfo(new AlgorithmIdentifier(PQCObjectIdentifiers.gmss, new ParSet(gmssParameterSet.getNumOfLayers(), gmssParameterSet.getHeightOfTrees(), gmssParameterSet.getWinternitzParameter(), gmssParameterSet.getK()).toASN1Primitive()), new GMSSPublicKey(publicKeyBytes));
}
public String getFormat()
{
return "X.509";
}
}