mirror of
https://github.com/tobiaslocker/base64.git
synced 2024-11-27 07:59:52 +08:00
include | ||
scripts | ||
.gitignore | ||
CMakeLists.txt | ||
LICENSE | ||
README.md |
base64
A simple approach to convert strings from and to base64. Header only library.
Usage
#include "base64.hpp"
#include <iostream>
int main() {
auto base64= to_base64("Hello, World!");
std::cout << base64 << '\n'; // SGVsbG8sIFdvcmxkIQ==
auto s = from_base64("SGVsbG8sIFdvcmxkIQ==");
std::cout << s << '\n'; // Hello, World!
}