Giri's C++ Support Library
C++ library providing everything you need to quickly create awesome applications.
Base64.h File Reference

Contains Base64 encoding/decoding algorithms. More...

#include <string>
#include <vector>
Include dependency graph for Base64.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Namespaces

 giri
 Namespace for giri's C++ support library.
 
 giri::Base64
 Namespace containing Base64 encoding/decoding commands.
 

Functions

std::string giri::Base64::Encode (const std::vector< char > &data)
 
std::vector< char > giri::Base64::Decode (const std::string &base64Data)
 

Detailed Description

Contains Base64 encoding/decoding algorithms.

Author
Megumi Tomita (tomykaira)
Daniel Giritzer

Further informations:

Based on: https://gist.github.com/tomykaira/f0fd86b6c73063283afe550bc5d77594

This version includes changes and documentation by giri@.nosp@m.nwrk.nosp@m..biz.

Original License:

The MIT License (MIT) Copyright (c) 2016 tomykaira

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.