//=====================================================================================================================
// Base64
//
// Adapted from http://stackoverflow.com/questions/180947/base64-decode-snippet-in-c
//=====================================================================================================================

#ifndef _BASE64_H_
#define _BASE64_H_

#include <string>
#include <vector>
#include <stdint.h>  

std::string mantis_base64_encode(uint8_t const* buf, unsigned int bufLen);

std::string mantis_base64_decode(std::string const&);

#endif
