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

#include "../std/string.hpp"

namespace base64
{
  string encode(string rawBytes);
  string decode(string const & base64Chars);
}