Base64 coder/decoder class. More...
#include <codec_base64.h>
Public Member Functions | |
| virtual void | encode (std::istream &in, std::ostream &out) |
| Base64 encode. | |
| virtual void | decode (std::istream &in, std::ostream &out) |
| Base64 decode. | |
Base64 coder/decoder class.
This class implements the base64 encoding algorithm.
| virtual void dbp::codec::codec_base64::decode | ( | std::istream & | in, | |
| std::ostream & | out | |||
| ) | [virtual] |
Base64 decode.
Decodes the base64 encoded data from the input stream and places decoded data into the output stream.
| in | the input stream | |
| out | the output stream |
| virtual void dbp::codec::codec_base64::encode | ( | std::istream & | in, | |
| std::ostream & | out | |||
| ) | [virtual] |
Base64 encode.
Encodes the data from the input stream and places encoded data into the output stream.
| in | the input stream | |
| out | the output stream |