From: Gonzalo A. <ga...@us...> - 2006-09-08 20:59:33
|
Update of /cvsroot/mod-c/ehtml/include In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv17321/include Modified Files: Common.h Log Message: Added {hex,base64}encode(std::string&). Index: Common.h =================================================================== RCS file: /cvsroot/mod-c/ehtml/include/Common.h,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** Common.h 8 Sep 2006 14:24:05 -0000 1.8 --- Common.h 8 Sep 2006 20:59:30 -0000 1.9 *************** *** 184,190 **** --- 184,192 ---- std::string hexencode(const MemBuf& mb); //TODO: writeme + std::string hexencode(const std::string& s); //TODO: updateme MemBuf hexdecode(const std::string& s) throw (const char*); //TODO: writeme std::string base64encode(const MemBuf& mb); //TODO: writeme + std::string base64encode(const std::string& s); //TODO: updateme MemBuf base64decode(const std::string& s) throw (const char*); //TODO: writeme |