Aeon Engine c550894
AeonGames Open Source Game Engine
Loading...
Searching...
No Matches
Base64.hpp File Reference

Base64 encoding and decoding utilities. More...

#include "aeongames/Platform.hpp"
#include <string>
#include <string_view>
#include <cstdint>
Include dependency graph for Base64.hpp:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Namespaces

namespace  AeonGames
 <- This is here just for the literals

Functions

DLL std::string AeonGames::Base64Encode (const uint8_t *aData, size_t aDataSize, bool aSplit=true)
 Encode a binary string.
DLL std::string AeonGames::Base64Decode (const uint8_t *aData, size_t aDataSize)
 Decode a base64 string.
DLL std::string AeonGames::Base64Encode (std::string_view aData)
 Encode a string_view as base64.
DLL std::string AeonGames::Base64Decode (std::string_view aData)
 Decode a base64 string_view.

Detailed Description

Base64 encoding and decoding utilities.

Definition in file Base64.hpp.