org.bouncycastle.pqc.asn1.SPHINCSPLUSPrivateKey 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.asn1;
import org.bouncycastle.asn1.ASN1EncodableVector;
import org.bouncycastle.asn1.ASN1Integer;
import org.bouncycastle.asn1.ASN1Object;
import org.bouncycastle.asn1.ASN1OctetString;
import org.bouncycastle.asn1.ASN1Primitive;
import org.bouncycastle.asn1.ASN1Sequence;
import org.bouncycastle.asn1.DEROctetString;
import org.bouncycastle.asn1.DERSequence;
import org.bouncycastle.util.Arrays;
/**
* See https://datatracker.ietf.org/doc/draft-uni-qsckeys-sphincsplus/00/ for details
* ASN.1 Encoding for a
* SphincsPlus private key for fully populated:
*
* SPHINCSPLUSPrivateKey ::= SEQUENCE {
* version INTEGER {v2(1)} --syntax version 2 (round 3)
* skseed OCTET STRING, --n-byte private key seed
* skprf OCTET STRING, --n-byte private key seed
* PublicKey SPHINCSPLUSPublicKey --public key
* }
*
*/
public class SPHINCSPLUSPrivateKey
extends ASN1Object
{
private int version;
private byte[] skseed;
private byte[] skprf;
private SPHINCSPLUSPublicKey PublicKey;
public int getVersion()
{
return version;
}
public byte[] getSkseed()
{
return Arrays.clone(skseed);
}
public byte[] getSkprf()
{
return Arrays.clone(skprf);
}
public SPHINCSPLUSPublicKey getPublicKey()
{
return PublicKey;
}
public SPHINCSPLUSPrivateKey(int version, byte[] skseed, byte[] skprf)
{
this(version, skseed, skprf, null);
}
public SPHINCSPLUSPrivateKey(int version, byte[] skseed, byte[] skprf, SPHINCSPLUSPublicKey publicKey)
{
this.version = version;
this.skseed = skseed;
this.skprf = skprf;
this.PublicKey = publicKey;
}
/**
* @deprecated use getInstance()
*/
public SPHINCSPLUSPrivateKey(ASN1Sequence seq)
{
version = ASN1Integer.getInstance(seq.getObjectAt(0)).intValueExact();
if (version != 0)
{
throw new IllegalArgumentException("unrecognized version");
}
skseed = Arrays.clone(ASN1OctetString.getInstance(seq.getObjectAt(1)).getOctets());
skprf = Arrays.clone(ASN1OctetString.getInstance(seq.getObjectAt(2)).getOctets());
if(seq.size() == 4)
{
PublicKey = SPHINCSPLUSPublicKey.getInstance(seq.getObjectAt(3));
}
}
public ASN1Primitive toASN1Primitive()
{
ASN1EncodableVector v = new ASN1EncodableVector();
v.add(new ASN1Integer(version));
v.add(new DEROctetString(skseed));
v.add(new DEROctetString(skprf));
// todo optional publickey
if(PublicKey != null)
{
v.add(new SPHINCSPLUSPublicKey(PublicKey.getPkseed(), PublicKey.getPkroot()));
}
return new DERSequence(v);
}
public static SPHINCSPLUSPrivateKey getInstance(Object o)
{
if (o instanceof SPHINCSPLUSPrivateKey)
{
return (SPHINCSPLUSPrivateKey)o;
}
else if (o != null)
{
return new SPHINCSPLUSPrivateKey(ASN1Sequence.getInstance(o));
}
return null;
}
}