Install & Compatibility
Where this runs
No compatibility data collected yet for this library.
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
base64.h
✓ #include <base64.h>
Encode and decode Base64 strings
#include <base64.h>
#include <iostream>
#include <string>
int main() {
std::string original = "Hello, World!";
std::string encoded = base64_encode(reinterpret_cast<const unsigned char*>(original.c_str()), original.length());
std::cout << "Encoded: " << encoded << "\n";
std::string decoded = base64_decode(encoded);
std::cout << "Decoded: " << decoded << "\n";
return 0;
}
Debug
Known issues
No known issues recorded.
Audit
Dependencies
No dependency data recorded yet.
Resources
No resource links recorded.