|
Botan
1.11.4
|
#include <pk_filts.h>
Public Member Functions | |
| virtual bool | attachable () |
| void | end_msg () |
| virtual std::string | name () const =0 |
| PK_Verifier_Filter (PK_Verifier *v) | |
| PK_Verifier_Filter (PK_Verifier *, const byte[], size_t) | |
| PK_Verifier_Filter (PK_Verifier *, const secure_vector< byte > &) | |
| void | set_signature (const byte[], size_t) |
| void | set_signature (const secure_vector< byte > &) |
| virtual void | start_msg () |
| void | write (const byte[], size_t) |
| ~PK_Verifier_Filter () | |
Protected Member Functions | |
| virtual void | send (const byte in[], size_t length) |
| void | send (byte in) |
| void | send (const secure_vector< byte > &in) |
| void | send (const std::vector< byte > &in) |
| void | send (const secure_vector< byte > &in, size_t length) |
| void | send (const std::vector< byte > &in, size_t length) |
Definition at line 71 of file pk_filts.h.
|
inline |
Definition at line 80 of file pk_filts.h.
| Botan::PK_Verifier_Filter::PK_Verifier_Filter | ( | PK_Verifier * | v, |
| const byte | sig[], | ||
| size_t | length | ||
| ) |
Definition at line 100 of file pk_filts.cpp.
| Botan::PK_Verifier_Filter::PK_Verifier_Filter | ( | PK_Verifier * | v, |
| const secure_vector< byte > & | sig | ||
| ) |
Definition at line 109 of file pk_filts.cpp.
|
inline |
Definition at line 83 of file pk_filts.h.
|
inlinevirtualinherited |
Check whether this filter is an attachable filter.
Reimplemented in Botan::SecureQueue, and Botan::DataSink.
|
virtual |
Notify that the current message is finished; flush buffers and do end-of-message processing (if any).
Reimplemented from Botan::Filter.
Definition at line 73 of file pk_filts.cpp.
References Botan::PK_Verifier::check_signature(), and Botan::Filter::send().
|
pure virtualinherited |
Implemented in Botan::MAC_Filter, Botan::Hash_Filter, Botan::Threaded_Fork, Botan::XTS_Decryption, Botan::Fork, Botan::CBC_Decryption, Botan::Hex_Decoder, Botan::Base64_Decoder, Botan::Zlib_Decompression, Botan::ECB_Decryption, Botan::Lzma_Decompression, Botan::CTS_Decryption, Botan::CFB_Decryption, Botan::Bzip_Decompression, Botan::AEAD_Filter, Botan::Chain, Botan::StreamCipher_Filter, Botan::DataSink_Stream, Botan::XTS_Encryption, Botan::PBE_PKCS5v15, Botan::PBE_PKCS5v20, Botan::Hex_Encoder, Botan::BitBucket, Botan::CBC_Encryption, Botan::ECB_Encryption, Botan::Lzma_Compression, Botan::SecureQueue, Botan::Bzip_Compression, Botan::Zlib_Compression, Botan::CFB_Encryption, Botan::CTS_Encryption, and Botan::Base64_Encoder.
Referenced by Botan::Keyed_Filter::set_iv().
|
protectedvirtualinherited |
| in | some input for the filter |
| length | the length of in |
Reimplemented in Botan::Threaded_Fork.
Definition at line 28 of file filter.cpp.
References Botan::Filter::write().
Referenced by Botan::PK_Encryptor_Filter::end_msg(), Botan::Zlib_Compression::end_msg(), Botan::Bzip_Compression::end_msg(), Botan::Lzma_Compression::end_msg(), Botan::Hex_Encoder::end_msg(), Botan::Base64_Encoder::end_msg(), Botan::PK_Decryptor_Filter::end_msg(), Botan::Bzip_Decompression::end_msg(), Botan::PK_Signer_Filter::end_msg(), Botan::Lzma_Decompression::end_msg(), Botan::Zlib_Decompression::end_msg(), Botan::Hex_Decoder::end_msg(), Botan::Base64_Decoder::end_msg(), end_msg(), Botan::Hash_Filter::end_msg(), Botan::MAC_Filter::end_msg(), Botan::Bzip_Compression::flush(), Botan::Zlib_Compression::flush(), Botan::Lzma_Compression::flush(), Botan::Zlib_Compression::write(), Botan::Bzip_Compression::write(), Botan::Lzma_Compression::write(), Botan::StreamCipher_Filter::write(), Botan::Bzip_Decompression::write(), Botan::Lzma_Decompression::write(), Botan::Zlib_Decompression::write(), Botan::Hex_Decoder::write(), and Botan::Base64_Decoder::write().
|
inlineprotectedinherited |
| in | some input for the filter |
Definition at line 65 of file filter.h.
References Botan::Filter::send().
Referenced by Botan::Filter::send().
|
inlineprotectedinherited |
| in | some input for the filter |
Definition at line 70 of file filter.h.
References Botan::Filter::send().
Referenced by Botan::Filter::send().
|
inlineprotectedinherited |
| in | some input for the filter |
Definition at line 75 of file filter.h.
References Botan::Filter::send().
Referenced by Botan::Filter::send().
|
inlineprotectedinherited |
|
inlineprotectedinherited |
| void Botan::PK_Verifier_Filter::set_signature | ( | const byte | sig[], |
| size_t | length | ||
| ) |
Definition at line 84 of file pk_filts.cpp.
| void Botan::PK_Verifier_Filter::set_signature | ( | const secure_vector< byte > & | sig | ) |
Definition at line 92 of file pk_filts.cpp.
|
inlinevirtualinherited |
Start a new message. Must be closed by end_msg() before another message can be started.
Reimplemented in Botan::Zlib_Decompression, Botan::Lzma_Decompression, Botan::Bzip_Decompression, Botan::PBE_PKCS5v15, Botan::PBE_PKCS5v20, Botan::Lzma_Compression, Botan::Bzip_Compression, and Botan::Zlib_Compression.
|
virtual |
Write a portion of a message to this filter.
| input | the input as a byte array |
| length | the length of the byte array input |
Implements Botan::Filter.
Definition at line 65 of file pk_filts.cpp.
References Botan::PK_Verifier::update().
1.8.3.1