Package org.bouncycastle.pqc.asn1
Class RainbowPublicKey
java.lang.Object
org.bouncycastle.asn1.ASN1Object
org.bouncycastle.pqc.asn1.RainbowPublicKey
- All Implemented Interfaces:
ASN1Encodable
,Encodable
This class implements an ASN.1 encoded Rainbow public key. The ASN.1 definition
of this structure is:
RainbowPublicKey ::= SEQUENCE { CHOICE { oid OBJECT IDENTIFIER -- OID identifying the algorithm version INTEGER -- 0 } docLength Integer -- length of the code coeffquadratic SEQUENCE OF OCTET STRING -- quadratic (mixed) coefficients coeffsingular SEQUENCE OF OCTET STRING -- singular coefficients coeffscalar SEQUENCE OF OCTET STRING -- scalar coefficients }
-
Constructor Summary
ConstructorsConstructorDescriptionRainbowPublicKey
(int docLength, short[][] coeffQuadratic, short[][] coeffSingular, short[] coeffScalar) -
Method Summary
Modifier and TypeMethodDescriptionshort[][]
short[]
short[][]
int
static RainbowPublicKey
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
-
RainbowPublicKey
public RainbowPublicKey(int docLength, short[][] coeffQuadratic, short[][] coeffSingular, short[] coeffScalar)
-
-
Method Details
-
getInstance
-
getVersion
-
getDocLength
public int getDocLength()- Returns:
- the docLength
-
getCoeffQuadratic
public short[][] getCoeffQuadratic()- Returns:
- the coeffquadratic
-
getCoeffSingular
public short[][] getCoeffSingular()- Returns:
- the coeffsingular
-
getCoeffScalar
public short[] getCoeffScalar()- Returns:
- the coeffscalar
-
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.
-