mirror of
https://github.com/etaHEN/etaHEN.git
synced 2026-01-17 05:24:20 +08:00
12 lines
330 B
C
12 lines
330 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <sys/types.h>
|
|
|
|
unsigned char * base64_encode(const unsigned char *src, size_t len,
|
|
size_t *out_len);
|
|
|
|
unsigned char * base64_decode(const unsigned char *src, size_t len,
|
|
size_t *out_len); |