Package org.bouncycastle.pqc.asn1
Class SPHINCSPLUSPrivateKey
java.lang.Object
org.bouncycastle.asn1.ASN1Object
org.bouncycastle.pqc.asn1.SPHINCSPLUSPrivateKey
- All Implemented Interfaces:
ASN1Encodable
,Encodable
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 }
-
Constructor Summary
ConstructorsConstructorDescriptionSPHINCSPLUSPrivateKey
(int version, byte[] skseed, byte[] skprf) SPHINCSPLUSPrivateKey
(int version, byte[] skseed, byte[] skprf, SPHINCSPLUSPublicKey publicKey) Deprecated.use getInstance() -
Method Summary
Modifier and TypeMethodDescriptionstatic SPHINCSPLUSPrivateKey
byte[]
getSkprf()
byte[]
int
Method providing a primitive representation of this object suitable for encoding.Methods inherited from class org.bouncycastle.asn1.ASN1Object
encodeTo, encodeTo, equals, getEncoded, getEncoded, hasEncodedTagValue, hashCode
-
Constructor Details
-
SPHINCSPLUSPrivateKey
public SPHINCSPLUSPrivateKey(int version, byte[] skseed, byte[] skprf) -
SPHINCSPLUSPrivateKey
public SPHINCSPLUSPrivateKey(int version, byte[] skseed, byte[] skprf, SPHINCSPLUSPublicKey publicKey) -
SPHINCSPLUSPrivateKey
Deprecated.use getInstance()
-
-
Method Details
-
getVersion
public int getVersion() -
getSkseed
public byte[] getSkseed() -
getSkprf
public byte[] getSkprf() -
getPublicKey
-
toASN1Primitive
Description copied from class:ASN1Object
Method providing a primitive representation of this object suitable for encoding.- Specified by:
toASN1Primitive
in interfaceASN1Encodable
- Specified by:
toASN1Primitive
in classASN1Object
- Returns:
- a primitive representation of this object.
-
getInstance
-