#include <basefilt.h>
|
virtual void | send (const uint8_t in[], size_t length) |
|
void | send (uint8_t in) |
|
void | send (const secure_vector< uint8_t > &in) |
|
void | send (const std::vector< uint8_t > &in) |
|
void | send (const secure_vector< uint8_t > &in, size_t length) |
|
void | send (const std::vector< uint8_t > &in, size_t length) |
|
BitBucket is a filter which simply discards all inputs
Definition at line 23 of file basefilt.h.
virtual bool Botan::Filter::attachable |
( |
| ) |
|
|
inlinevirtualinherited |
virtual void Botan::Filter::end_msg |
( |
| ) |
|
|
inlinevirtualinherited |
std::string Botan::BitBucket::name |
( |
| ) |
const |
|
inlineoverridevirtual |
- Returns
- descriptive name for this filter
Implements Botan::Filter.
Definition at line 27 of file basefilt.h.
27 {
return "BitBucket"; }
void Botan::Filter::send |
( |
const uint8_t |
in[], |
|
|
size_t |
length |
|
) |
| |
|
protectedvirtualinherited |
- Parameters
-
in | some input for the filter |
length | the length of in |
Definition at line 27 of file filter.cpp.
References Botan::Filter::write().
Referenced by Botan::Hex_Encoder::end_msg(), Botan::Base64_Encoder::end_msg(), Botan::Hex_Decoder::end_msg(), Botan::Base64_Decoder::end_msg(), Botan::Hash_Filter::end_msg(), Botan::MAC_Filter::end_msg(), Botan::StreamCipher_Filter::write(), Botan::Hex_Decoder::write(), and Botan::Base64_Decoder::write().
32 bool nothing_attached =
true;
33 for(
size_t j = 0; j != total_ports(); ++j)
36 if(m_write_queue.size())
37 m_next[j]->
write(m_write_queue.data(), m_write_queue.size());
38 m_next[j]->write(input, length);
39 nothing_attached =
false;
43 m_write_queue += std::make_pair(input, length);
45 m_write_queue.clear();
virtual void write(const uint8_t input[], size_t length)=0
void Botan::Filter::send |
( |
uint8_t |
in | ) |
|
|
inlineprotectedinherited |
void Botan::Filter::send |
( |
const std::vector< uint8_t > & |
in | ) |
|
|
inlineprotectedinherited |
void Botan::Filter::send |
( |
const secure_vector< uint8_t > & |
in, |
|
|
size_t |
length |
|
) |
| |
|
inlineprotectedinherited |
- Parameters
-
in | some input for the filter |
length | the number of bytes of in to send |
Definition at line 81 of file filter.h.
83 send(in.data(), length);
virtual void send(const uint8_t in[], size_t length)
void Botan::Filter::send |
( |
const std::vector< uint8_t > & |
in, |
|
|
size_t |
length |
|
) |
| |
|
inlineprotectedinherited |
- Parameters
-
in | some input for the filter |
length | the number of bytes of in to send |
Definition at line 90 of file filter.h.
92 send(in.data(), length);
virtual void send(const uint8_t in[], size_t length)
virtual void Botan::Filter::start_msg |
( |
| ) |
|
|
inlinevirtualinherited |
Start a new message. Must be closed by end_msg() before another message can be started.
Definition at line 40 of file filter.h.
void Botan::BitBucket::write |
( |
const uint8_t |
input[], |
|
|
size_t |
length |
|
) |
| |
|
inlineoverridevirtual |
Write a portion of a message to this filter.
- Parameters
-
input | the input as a byte array |
length | the length of the byte array input |
Implements Botan::Filter.
Definition at line 25 of file basefilt.h.
The documentation for this struct was generated from the following file: