blob: 609a8777d4144218d83356fe1c79ddc0034cde79 (
plain)
1
2
3
4
5
6
7
|
#ifndef _BASE64_H
#define _BASE64_H
int base64_encode(const unsigned char *src, int len, char *dst);
int base64_decode(const char *src, int len, unsigned char *dst);
#endif /* _BASE64_H */
|