1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-29 10:31:15 +02:00

Add base64 encoder/decoder

This commit is contained in:
Eelco Dolstra 2015-02-09 15:09:39 +01:00
parent 70cae879e3
commit a596c525ad
3 changed files with 66 additions and 8 deletions

View file

@ -398,4 +398,9 @@ void ignoreException();
string filterANSIEscapes(const string & s, bool nixOnly = false);
/* Base64 encoding/decoding. */
string base64Encode(const string & s);
string base64Decode(const string & s);
}