Newer
Older
WickedDocs / Crypto / Base64 / Base64.h
@John Ryland John Ryland on 15 Dec 2015 287 bytes Start base64
#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