Botan 3.4.0
Crypto and TLS for C&
Public Member Functions | List of all members
Botan::PK_Ops::Verification Class Referenceabstract

#include <pk_ops.h>

Inheritance diagram for Botan::PK_Ops::Verification:
Botan::PK_Ops::Verification_with_Hash Botan::XMSS_Verification_Operation

Public Member Functions

virtual std::string hash_function () const =0
 
virtual bool is_valid_signature (const uint8_t sig[], size_t sig_len)=0
 
virtual void update (const uint8_t msg[], size_t msg_len)=0
 
virtual ~Verification ()=default
 

Detailed Description

Public key signature verification interface

Definition at line 69 of file pk_ops.h.

Constructor & Destructor Documentation

◆ ~Verification()

virtual Botan::PK_Ops::Verification::~Verification ( )
virtualdefault

Member Function Documentation

◆ hash_function()

virtual std::string Botan::PK_Ops::Verification::hash_function ( ) const
pure virtual

Return the hash function being used by this signer

Implemented in Botan::PK_Ops::Verification_with_Hash, and Botan::XMSS_Verification_Operation.

◆ is_valid_signature()

virtual bool Botan::PK_Ops::Verification::is_valid_signature ( const uint8_t sig[],
size_t sig_len )
pure virtual

Perform a verification operation

Implemented in Botan::PK_Ops::Verification_with_Hash, and Botan::XMSS_Verification_Operation.

◆ update()

virtual void Botan::PK_Ops::Verification::update ( const uint8_t msg[],
size_t msg_len )
pure virtual

Add more data to the message currently being signed

Parameters
msgthe message
msg_lenthe length of msg in bytes

Implemented in Botan::PK_Ops::Verification_with_Hash, and Botan::XMSS_Verification_Operation.


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