mirror of
https://github.com/izzy2lost/ppsspp.git
synced 2026-03-10 12:43:04 -07:00
9 lines
186 B
C++
9 lines
186 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
std::string Base64Encode(const uint8_t *p, size_t sz);
|
|
std::vector<uint8_t> Base64Decode(const char *s, size_t sz);
|