IXWebSocket/examples/cobra_publisher/ixcrypto/IXBase64.h
2018-12-23 14:14:38 -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);
}