CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
hrydgard

CoCalc provides the best real-time collaborative environment for Jupyter Notebooks, LaTeX documents, and SageMath, scalable from individual users to large groups and classes!

GitHub Repository: hrydgard/ppsspp
Path: blob/master/Common/Data/Encoding/Base64.h
Views: 1401
1
#pragma once
2
3
#include <cstdint>
4
#include <string>
5
#include <vector>
6
7
std::string Base64Encode(const uint8_t *p, size_t sz);
8
std::vector<uint8_t> Base64Decode(const char *s, size_t sz);
9
10