Files
libkiwix/include/tools/base64.h
Matthieu Gautier af7689e3e8 [API break] Move all the tools in the tools directory instead of common.
The `common` name is from the time where kiwix was only one repository
for all the project (android, desktop, server...).

Now we have split the repositories and kiwix-lib is the "common" repo,
the "common" directory is somehow nonsense.
2019-01-23 15:31:38 +01:00

5 lines
124 B
C++

#include <string>
std::string base64_encode(const std::string& inString);
std::string base64_decode(const std::string& s);