mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-27 15:30:35 +00:00
7e5052bc9e
Using base64 at this point to keep JSON.
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);
|