Botan 3.6.1
Crypto and TLS for C&
|
#include <pk_ops.h>
Public Member Functions | |
virtual std::string | hash_function () const =0 |
virtual bool | is_valid_signature (std::span< const uint8_t > sig)=0 |
virtual void | update (std::span< const uint8_t > input)=0 |
virtual | ~Verification ()=default |
|
virtualdefault |
|
pure virtual |
Return the hash function being used by this signer
Implemented in Botan::PK_Ops::Verification_with_Hash, Botan::TPM2::Signature_Operation_Base< PK_Ops::Verification >, and Botan::XMSS_Verification_Operation.
|
pure virtual |
Perform a verification operation
sig | the signature to be checked with respect to the input |
Implemented in Botan::PK_Ops::Verification_with_Hash, Botan::TPM2::Verification_Operation, and Botan::XMSS_Verification_Operation.
|
pure virtual |
Add more data to the message currently being signed
input | the input to be hashed/verified |
Implemented in Botan::PK_Ops::Verification_with_Hash, Botan::TPM2::Signature_Operation_Base< PK_Ops::Verification >, and Botan::XMSS_Verification_Operation.