32 #include "../System/databuffer.h"
41 static std::shared_ptr<Base64Decoder>
create();
47 virtual void reset() = 0;
50 virtual void feed(
const void *data,
int size,
bool append_result =
true) = 0;
Base64 decoder class.
Definition: base64_decoder.h:37
virtual const DataBufferPtr & result() const =0
Returns the decoded data.
static std::shared_ptr< Base64Decoder > create()
Constructs a base64 decoder.
std::shared_ptr< DataBuffer > DataBufferPtr
Definition: databuffer.h:66
virtual void feed(const void *data, int size, bool append_result=true)=0
Feeds the decoder with base64 encoded data.
virtual void reset()=0
Resets the decoder.
Definition: Application/application.h:35
static DataBufferPtr decode(const void *data, int size)
Decode base64 data and return it in a buffer.