diff options
author | Roland Reichwein <mail@reichwein.it> | 2020-04-15 20:01:25 +0200 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2020-04-15 20:01:25 +0200 |
commit | f6e703a938a95c555b388f79966cf955c5d07dc6 (patch) | |
tree | f47eae93adf9f72b1472ced2a1a051e90845dafe /base64.h | |
parent | 1ce0bb7ad50129fbab6c0a75f18eee6149ca1be3 (diff) |
HTTP Auth (Basic)
Diffstat (limited to 'base64.h')
-rw-r--r-- | base64.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/base64.h b/base64.h new file mode 100644 index 0000000..6a3f2c3 --- /dev/null +++ b/base64.h @@ -0,0 +1,7 @@ +#pragma once + +#include <string> + +std::string decode64(const std::string &val); +std::string encode64(const std::string &val); + |