Welcome to mirror list, hosted at ThFree Co, Russian Federation.

base64.hpp « coding - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8f3e8cb6784ddc42bdd33f88079d70c5aa243593 (plain)
1
2
3
4
5
6
7
8
9
#pragma once

#include <string>

namespace base64
{
std::string Encode(std::string const & bytesToEncode);
std::string Decode(std::string const & base64CharsToDecode);
}  // namespace base64