mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
8 lines
186 B
C++
8 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);
|