#pragma once #include #include #include #include namespace BareMinimumCrypto { using namespace std; vector copy_to_bytes (const string & s); // Not sure why the Base64 lib fails to provide this API string base64_encode (const vector & v); optional > b64_decode (const string & s); }