galaxy 1.0.0
Real-Time C++23 Game Programming Framework. Built on data-driven design principles and agile software engineering.
Loading...
Searching...
No Matches
Base64.hpp
Go to the documentation of this file.
1
7
8#ifndef GALAXY_MATH_BASE64_HPP_
9#define GALAXY_MATH_BASE64_HPP_
10
11#include <string>
12
13namespace galaxy
14{
15 namespace math
16 {
27 [[nodiscard]]
28 std::string encode_base64(const std::string& input);
29
40 [[nodiscard]]
41 std::string decode_base64(const std::string& input);
42 } // namespace math
43} // namespace galaxy
44
45#endif
std::string encode_base64(const std::string &input)
Compresses string into Base64.
Definition Base64.cpp:51
std::string decode_base64(const std::string &input)
Decompresses string into Base64.
Definition Base64.cpp:105
Timer.hpp galaxy.
Definition Async.hpp:17