Security Scol plugin
Public Member Functions | List of all members
TF_VerifierBase Class Reference

Trapdoor Function (TF) Verifier base class. More...

#include <pubkey.h>

Inheritance diagram for TF_VerifierBase:
TF_SignatureSchemeBase< PK_Verifier, TF_Base< TrapdoorFunction, PK_SignatureMessageEncodingMethod > > PK_Verifier TF_Base< TrapdoorFunction, PK_SignatureMessageEncodingMethod > PK_SignatureScheme PublicKeyAlgorithm AsymmetricAlgorithm Algorithm Clonable AlgorithmImpl< TF_VerifierBase, SCHEME_OPTIONS::AlgorithmInfo >

Public Member Functions

void InputSignature (PK_MessageAccumulator &messageAccumulator, const byte *signature, size_t signatureLength) const
 Input signature into a message accumulator.
 
bool VerifyAndRestart (PK_MessageAccumulator &messageAccumulator) const
 Check whether messageAccumulator contains a valid signature and message, and restart messageAccumulator.
 
DecodingResult RecoverAndRestart (byte *recoveredMessage, PK_MessageAccumulator &recoveryAccumulator) const
 Recover a message from its signature.
 
- Public Member Functions inherited from TF_SignatureSchemeBase< PK_Verifier, TF_Base< TrapdoorFunction, PK_SignatureMessageEncodingMethod > >
size_t SignatureLength () const
 
size_t MaxRecoverableLength () const
 
size_t MaxRecoverableLengthFromSignatureLength (size_t signatureLength) const
 
bool IsProbabilistic () const
 
bool AllowNonrecoverablePart () const
 
bool RecoverablePartFirst () const
 
- Public Member Functions inherited from PK_Verifier
virtual PK_MessageAccumulatorNewVerificationAccumulator () const =0
 Create a new HashTransformation to accumulate the message to be verified.
 
virtual bool Verify (PK_MessageAccumulator *messageAccumulator) const
 Check whether messageAccumulator contains a valid signature and message.
 
virtual bool VerifyMessage (const byte *message, size_t messageLen, const byte *signature, size_t signatureLen) const
 Check whether input signature is a valid signature for input message.
 
virtual DecodingResult Recover (byte *recoveredMessage, PK_MessageAccumulator *messageAccumulator) const
 Recover a message from its signature.
 
virtual DecodingResult RecoverMessage (byte *recoveredMessage, const byte *nonrecoverableMessage, size_t nonrecoverableMessageLength, const byte *signature, size_t signatureLength) const
 Recover a message from its signature.
 
- Public Member Functions inherited from PK_SignatureScheme
virtual size_t MaxSignatureLength (size_t recoverablePartLength=0) const
 Provides the maximum signature length produced given the length of the recoverable message part.
 
virtual bool SignatureUpfront () const
 Determines whether the signature must be input before the message.
 
- Public Member Functions inherited from PublicKeyAlgorithm
CryptoMaterialAccessMaterial ()
 Retrieves a reference to a Public Key.
 
const CryptoMaterialGetMaterial () const
 Retrieves a reference to a Public Key.
 
virtual PublicKeyAccessPublicKey ()=0
 Retrieves a reference to a Public Key.
 
virtual const PublicKeyGetPublicKey () const
 Retrieves a reference to a Public Key.
 
- Public Member Functions inherited from Algorithm
 Algorithm (bool checkSelfTestStatus=true)
 Interface for all crypto algorithms.
 
virtual std::string AlgorithmName () const
 Provides the name of this algorithm.
 
virtual std::string AlgorithmProvider () const
 Retrieve the provider of this algorithm.
 
- Public Member Functions inherited from Clonable
virtual ClonableClone () const
 Copies this object.
 

Additional Inherited Members

- Protected Types inherited from TF_Base< TrapdoorFunction, PK_SignatureMessageEncodingMethod >
typedef TrapdoorFunction TrapdoorFunctionInterface
 
typedef PK_SignatureMessageEncodingMethod MessageEncodingInterface
 
- Protected Member Functions inherited from TF_SignatureSchemeBase< PK_Verifier, TF_Base< TrapdoorFunction, PK_SignatureMessageEncodingMethod > >
size_t MessageRepresentativeLength () const
 
size_t MessageRepresentativeBitLength () const
 
virtual HashIdentifier GetHashIdentifier () const=0
 
virtual size_t GetDigestSize () const=0
 
- Protected Member Functions inherited from TF_Base< TrapdoorFunction, PK_SignatureMessageEncodingMethod >
virtual const TrapdoorFunctionBoundsGetTrapdoorFunctionBounds () const=0
 
virtual const TrapdoorFunctionInterfaceGetTrapdoorFunctionInterface () const=0
 
virtual const MessageEncodingInterfaceGetMessageEncodingInterface () const=0
 

Detailed Description

Trapdoor Function (TF) Verifier base class.

Definition at line 521 of file pubkey.h.

Constructor & Destructor Documentation

◆ ~TF_VerifierBase()

virtual TF_VerifierBase::~TF_VerifierBase ( )
inlinevirtual

Definition at line 524 of file pubkey.h.

Member Function Documentation

◆ InputSignature()

void TF_VerifierBase::InputSignature ( PK_MessageAccumulator messageAccumulator,
const byte signature,
size_t  signatureLength 
) const
virtual

Input signature into a message accumulator.

Parameters
messageAccumulatora pointer to a PK_MessageAccumulator derived class
signaturethe signature on the message
signatureLengththe size of the signature

Implements PK_Verifier.

Definition at line 94 of file pubkey.cpp.

◆ RecoverAndRestart()

DecodingResult TF_VerifierBase::RecoverAndRestart ( byte recoveredMessage,
PK_MessageAccumulator messageAccumulator 
) const
virtual

Recover a message from its signature.

Parameters
recoveredMessagea pointer to the recoverable message part to be verified
messageAccumulatora pointer to a PK_MessageAccumulator derived class
Returns
the result of the verification operation

RecoverAndRestart() restarts the messageAccumulator

Precondition
COUNTOF(recoveredMessage) == MaxRecoverableLengthFromSignatureLength(signatureLength)

Implements PK_Verifier.

Definition at line 125 of file pubkey.cpp.

◆ VerifyAndRestart()

bool TF_VerifierBase::VerifyAndRestart ( PK_MessageAccumulator messageAccumulator) const
virtual

Check whether messageAccumulator contains a valid signature and message, and restart messageAccumulator.

Parameters
messageAccumulatora reference to a PK_MessageAccumulator derived class
Returns
true if the signature is valid, false otherwise

VerifyAndRestart() restarts the messageAccumulator

Implements PK_Verifier.

Definition at line 110 of file pubkey.cpp.


The documentation for this class was generated from the following files: