IXWebSocket/ws/ixcrypto/IXBase64.h
2019-05-30 08:46:50 -07:00

16 lines
309 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);
std::string base64_decode(const std::string& encoded_string);
} // namespace ix