OpenAB  1.0.1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Pict.hpp
Go to the documentation of this file.
1 /*
2  * This Source Code Form is subject to the terms of the Mozilla Public
3  * License, v. 2.0. If a copy of the MPL was not distributed with this
4  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
5  */
10 #ifndef PICT_PHOTO_LOGO_LIBRARY_HPP
11 #define PICT_PHOTO_LOGO_LIBRARY_HPP
12 
13 #include <cstddef>
14 #include <string>
15 
16 int base64decode(const char *in, size_t inLen, unsigned char *out, size_t *outLen);
17 int base64encode(const char *in, size_t inLen, unsigned char *out, size_t *outLen);
18 std::string urlDecode(const std::string & SRC);
19 
20 
21 #endif /* PICT_PHOTO_LOGO_LIBRARY_HPP */
int base64decode(const char *in, size_t inLen, unsigned char *out, size_t *outLen)
Definition: Pict.cpp:47
std::string urlDecode(const std::string &SRC)
Definition: Pict.cpp:168
int base64encode(const char *in, size_t inLen, unsigned char *out, size_t *outLen)
Definition: Pict.cpp:99