#ifndef BASE64_H
#define BASE64_H


#include <string>
#include <vector>


namespace Base64
{
  bool Encode(const std::vector<uint8_t>& input_data, std::string& encoded_string);
  bool Decode(const std::string& encoded_string, std::vector<uint8_t>& decoded_data);
}


#endif // BASE64_H

