Registry / serialization / cpp-base64

cpp-base64

JSON →
libraryV2.rc.08vcpkgunverified

Base64 encoding and decoding with C++.

vcpkg install cpp-base64
INSTALL
IMPORT
SIG · CPP-BASE64
C
cpp-base64
serializationcppvV2.rc.08
harness data pending
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.

Upgrade
Version history
V2.rc.08latest on vcpkg
Audit
Dependencies

No dependency data recorded yet.

Agent activity
4 hits · last 30 days
node
4
Resources

No resource links recorded.

cpp-base64 — pip install cpp-base64 · libregistry