Botan
1.10.9
|
#include <data_src.h>
Public Member Functions | |
DataSource () | |
size_t | discard_next (size_t N) |
virtual bool | end_of_data () const =0 |
virtual std::string | id () const |
virtual size_t | peek (byte out[], size_t length, size_t peek_offset) const =0 |
size_t | peek_byte (byte &out) const |
virtual size_t | read (byte out[], size_t length)=0 |
size_t | read_byte (byte &out) |
virtual | ~DataSource () |
This class represents an abstract data source object.
Definition at line 20 of file data_src.h.
|
inline |
Definition at line 82 of file data_src.h.
|
inlinevirtual |
Definition at line 83 of file data_src.h.
size_t Botan::DataSource::discard_next | ( | size_t | N | ) |
Discard the next N bytes of the data
N | the number of bytes to discard |
Definition at line 35 of file data_src.cpp.
References n, and read_byte().
|
pure virtual |
Test whether the source still has data that can be read.
Implemented in Botan::Pipe, Botan::DataSource_Stream, Botan::DataSource_Memory, Botan::DataSource_Command, and Botan::SecureQueue.
Referenced by Botan::BER_Decoder::end_cons(), Botan::BER_Decoder::more_items(), Botan::BER_Decoder::verify_end(), and Botan::Pipe::write().
|
inlinevirtual |
return the id of this data source
Reimplemented in Botan::DataSource_Stream, and Botan::DataSource_Command.
Definition at line 57 of file data_src.h.
|
pure virtual |
Read from the source but do not modify the internal offset. Consecutive calls to peek() will return portions of the source starting at the same position.
out | the byte array to write the output to |
length | the length of the byte array out |
peek_offset | the offset into the stream to read at |
Implemented in Botan::Pipe, Botan::DataSource_Stream, Botan::DataSource_Memory, Botan::DataSource_Command, and Botan::SecureQueue.
Referenced by Botan::PEM_Code::matches(), and peek_byte().
size_t Botan::DataSource::peek_byte | ( | byte & | out | ) | const |
Peek at one byte.
out | an output byte |
Definition at line 27 of file data_src.cpp.
References peek().
Referenced by Botan::ASN1::maybe_BER().
|
pure virtual |
Read from the source. Moves the internal offset so that every call to read will return a new portion of the source.
out | the byte array to write the result to |
length | the length of the byte array out |
Implemented in Botan::Pipe, Botan::DataSource_Stream, Botan::DataSource_Memory, Botan::DataSource_Command, and Botan::SecureQueue.
Referenced by Botan::BER_Decoder::get_next_object(), read_byte(), and Botan::Pipe::write().
size_t Botan::DataSource::read_byte | ( | byte & | out | ) |
Read one byte.
out | the byte to read to |
Definition at line 19 of file data_src.cpp.
References read().
Referenced by Botan::PEM_Code::decode(), discard_next(), Botan::BER_Decoder::discard_remaining(), Botan::PGP_decode(), and Botan::BER_Decoder::raw_bytes().