commit | f927347406ef6ea49edf710897b213ccd8c8e284 | [log] [tgz] |
---|---|---|
author | Ed Tanous <ed.tanous@intel.com> | Tue Feb 28 16:05:13 2017 -0800 |
committer | Ed Tanous <ed.tanous@intel.com> | Tue Feb 28 16:05:13 2017 -0800 |
tree | f5fa40edeb9e177e07ff6b58939e9315ba667d5e | |
parent | 5f34a9c5820b4a60352f40cb7fa86011012b9801 [diff] [blame] |
incremental
diff --git a/include/base64.hpp b/include/base64.hpp new file mode 100644 index 0000000..f5ff338 --- /dev/null +++ b/include/base64.hpp
@@ -0,0 +1,9 @@ +#include <gsl/string_span> +#include <string> + +namespace base64 { + + bool base64_encode(const gsl::cstring_span<> &input, std::string &output); + bool base64_decode(const gsl::cstring_span<> &input, std::string &output); + +} \ No newline at end of file