1 /*
2  * This File is part of Davix, The IO library for HTTP based protocols
3  * Copyright (C) 2013  Adrien Devresse <adrien.devresse@cern.ch>, CERN
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2.1 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
18  *
19 */
20 
21 
22 #ifndef BASE64_HPP
23 #define BASE64_HPP
24 
25 /*
26    base64.cpp and base64.hpp
27 
28    Modified version from René Nyffenegger version
29 
30    Public Domain
31 
32 */
33 
34 #include <string>
35 
36 namespace Base64{
37 
38 std::string base64_encode(unsigned char const* , unsigned int len);
39 std::string base64_decode(std::string const& s);
40 
41 
42 
43 }
44 
45 #endif // BASE64_HPP
46