Child: [3872f8] (diff)

Download this file

base64.h    10 lines (7 with data), 314 Bytes

1
2
3
4
5
6
7
8
9
#ifndef _BASE64_H_INCLUDED_
#define _BASE64_H_INCLUDED_
/* @(#$Id: base64.h,v 1.1 2005-11-06 11:16:53 dockes Exp $ (C) 2004 J.F.Dockes */
#include <string>
void base64_encode(const std::string &in, std::string &out);
bool base64_decode(const std::string& in, std::string& out);
#endif /* _BASE64_H_INCLUDED_ */