mirror of
https://github.com/wiiu-env/WiiUPluginLoaderBackend.git
synced 2024-11-06 13:05:07 +01:00
21 lines
394 B
C
21 lines
394 B
C
|
#pragma once
|
||
|
|
||
|
#include <stdint.h>
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
// based on https://nachtimwald.com/2017/11/18/base64-encode-and-decode-in-c/
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
size_t b64_encoded_size(size_t inlen);
|
||
|
char *b64_encode(const uint8_t *in, size_t len);
|
||
|
|
||
|
size_t b64_decoded_size(const char *in);
|
||
|
int b64_decode(const char *in, uint8_t *out, size_t outlen);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|