2018-11-07 21:26:32 +01:00
|
|
|
/*
|
|
|
|
* base64.h
|
|
|
|
* Author: Benjamin Sergeant
|
|
|
|
* Copyright (c) 2018 Machine Zone. All rights reserved.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
namespace ix
|
|
|
|
{
|
2018-11-10 03:23:49 +01:00
|
|
|
std::string base64_encode(const std::string& data, size_t len);
|
2019-02-21 03:59:07 +01:00
|
|
|
std::string base64_decode(const std::string& encoded_string);
|
2018-11-07 21:26:32 +01:00
|
|
|
}
|