
15 May
2010
15 May
'10
12:03 p.m.
deninok wrote:
Is there any interest in a library for base64 encoding?
Something like this:
int main() { base64_encoder encode;
std::string pure = "Hello world!"; std::string enc;
encode( pure, enc ); // In enc: SGVsbG8gd29ybGQh ... }
My own effort at base64 decoding as an iterator adaptor is here, in case anyone is interested: http://svn.chezphil.org/libpbe/trunk/include/base64.hh Regards, Phil.