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

base64.h « biconcor - github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 20398dd37ee1e301301ed9ec926b2583c4f20590 (plain)
1
2
3
4
5
6
#pragma once

#include <string>

std::string base64_encode(unsigned char const* , unsigned int len);
std::string base64_decode(std::string const& s);