Newer
Older
Import / applications / MakePDF / Crypto / Base64 / Base64.h
@John John on 29 Dec 2020 287 bytes bulk import from macbookpro checkouts
#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