Package org.bouncycastle.pqc.crypto.lms
Class HSSSignature
- java.lang.Object
-
- org.bouncycastle.pqc.crypto.lms.HSSSignature
-
-
Constructor Summary
Constructors Constructor Description HSSSignature(int lMinus1, org.bouncycastle.pqc.crypto.lms.LMSSignedPubKey[] signedPubKey, org.bouncycastle.pqc.crypto.lms.LMSSignature signature)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object o)byte[]getEncoded()Return a byte array representing the implementing object.static HSSSignaturegetInstance(java.lang.Object src, int L)intgetlMinus1()org.bouncycastle.pqc.crypto.lms.LMSSignaturegetSignature()org.bouncycastle.pqc.crypto.lms.LMSSignedPubKey[]getSignedPubKey()inthashCode()
-
-
-
Method Detail
-
getInstance
public static HSSSignature getInstance(java.lang.Object src, int L) throws java.io.IOException
- Parameters:
src- byte[], InputStream or HSSSignatureL- The HSS depth, available from public key.- Returns:
- An HSSSignature instance.
- Throws:
java.io.IOException
-
getlMinus1
public int getlMinus1()
-
getSignedPubKey
public org.bouncycastle.pqc.crypto.lms.LMSSignedPubKey[] getSignedPubKey()
-
getSignature
public org.bouncycastle.pqc.crypto.lms.LMSSignature getSignature()
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
getEncoded
public byte[] getEncoded() throws java.io.IOExceptionDescription copied from interface:EncodableReturn a byte array representing the implementing object.- Specified by:
getEncodedin interfaceEncodable- Returns:
- a byte array representing the encoding.
- Throws:
java.io.IOException- if an issue arises generation the encoding.
-
-