blob: e240f8b698aef527f0c297c502edffb0924a76a7 (
plain)
1
2
3
4
5
6
7
8
|
#ifndef BASE64_H
#define BASE64_H 1
void base64_cleanup(void);
char *base64_encode(const unsigned char *data, size_t input_length, size_t *output_length);
unsigned char *base64_decode(const char *data, size_t input_length, size_t *output_length);
#endif
|