org.spongycastle.pqc.jcajce.provider.newhope.BCNHPublicKey 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.newhope;
import java.io.IOException;
import org.spongycastle.asn1.x509.AlgorithmIdentifier;
import org.spongycastle.asn1.x509.SubjectPublicKeyInfo;
import org.spongycastle.crypto.CipherParameters;
import org.spongycastle.pqc.asn1.PQCObjectIdentifiers;
import org.spongycastle.pqc.crypto.newhope.NHPublicKeyParameters;
import org.spongycastle.pqc.jcajce.interfaces.NHPublicKey;
import org.spongycastle.util.Arrays;
public class BCNHPublicKey
implements NHPublicKey
{
private static final long serialVersionUID = 1L;
private final NHPublicKeyParameters params;
public BCNHPublicKey(
NHPublicKeyParameters params)
{
this.params = params;
}
public BCNHPublicKey(SubjectPublicKeyInfo keyInfo)
{
this.params = new NHPublicKeyParameters(keyInfo.getPublicKeyData().getBytes());
}
/**
* Compare this SPHINCS-256 public key with another object.
*
* @param o the other object
* @return the result of the comparison
*/
public boolean equals(Object o)
{
if (o == null || !(o instanceof BCNHPublicKey))
{
return false;
}
BCNHPublicKey otherKey = (BCNHPublicKey)o;
return Arrays.areEqual(params.getPubData(), otherKey.params.getPubData());
}
public int hashCode()
{
return Arrays.hashCode(params.getPubData());
}
/**
* @return name of the algorithm - "NH"
*/
public final String getAlgorithm()
{
return "NH";
}
public byte[] getEncoded()
{
SubjectPublicKeyInfo pki;
try
{
AlgorithmIdentifier algorithmIdentifier = new AlgorithmIdentifier(PQCObjectIdentifiers.newHope);
pki = new SubjectPublicKeyInfo(algorithmIdentifier, params.getPubData());
return pki.getEncoded();
}
catch (IOException e)
{
return null;
}
}
public String getFormat()
{
return "X.509";
}
public byte[] getPublicData()
{
return params.getPubData();
}
CipherParameters getKeyParams()
{
return params;
}
}