Maze Builder Docs 7.5.6
Loading...
Searching...
No Matches
base64_helper.h
Go to the documentation of this file.
1#ifndef BASE64_HELPER_H
2#define BASE64_HELPER_H
3
4#include <memory>
5#include <string>
6#include <string_view>
7
8namespace mazes
9{
10
16 {
17 public:
21 static std::string encode(std::string_view sv) noexcept;
22
24 static std::string decode(std::string_view sv) noexcept;
25
26 private:
27 }; // class
28
29} // namespace
30
31#endif // BASE64_HELPER_H
Base64 encoding and decoding helper class.
Definition base64_helper.h:16
static std::string decode(std::string_view sv) noexcept
Transform an input string from from base64 characters.
static std::string encode(std::string_view sv) noexcept
Transform an input string into base64 characters.
Namespace for the maze builder.
Definition algo_interface.h:6