IXWebSocket/examples/satori_publisher/base64.h
2018-11-09 18:42:09 -08:00

15 lines
227 B
C++

/*
* base64.h
* Author: Benjamin Sergeant
* Copyright (c) 2018 Machine Zone. All rights reserved.
*/
#pragma once
#include <string>
namespace ix
{
std::string base64_encode(const std::string& data, size_t len);
}