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: 80f6d540dfdeac66a60653cca072abe126593038 (plain)
1
2
3
4
5
6
7
8
9
#pragma once

#include "std/string.hpp"

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