Package org.bouncycastle.pqc.crypto
Interface MessageSigner
- All Known Subinterfaces:
StateAwareMessageSigner
- All Known Implementing Classes:
DilithiumSigner,FalconSigner,GeMSSSigner,GMSSSigner,GMSSStateAwareSigner,HSSSigner,LMSSigner,MayoSigner,PicnicSigner,QTESLASigner,RainbowSigner,SLHDSASigner,SnovaSigner,SPHINCS256Signer,SPHINCSPlusSigner,XMSSMTSigner,XMSSSigner
public interface MessageSigner
Base interface for a PQC signing algorithm.
-
Method Summary
Modifier and TypeMethodDescriptionbyte[]generateSignature(byte[] message) sign the passed in message (usually the output of a hash function).voidinit(boolean forSigning, CipherParameters param) initialise the signer for signature generation or signature verification.booleanverifySignature(byte[] message, byte[] signature) verify the message message against the signature value.
-
Method Details
-
init
initialise the signer for signature generation or signature verification.- Parameters:
forSigning- true if we are generating a signature, false otherwise.param- key parameters for signature generation.
-
generateSignature
byte[] generateSignature(byte[] message) sign the passed in message (usually the output of a hash function).- Parameters:
message- the message to be signed.- Returns:
- the signature of the message
-
verifySignature
boolean verifySignature(byte[] message, byte[] signature) verify the message message against the signature value.- Parameters:
message- the message that was supposed to have been signed.signature- the signature of the message
-