2005-09-15 09:58:31 -04:00
|
|
|
#ifndef EL__UTIL_BASE64_H
|
|
|
|
#define EL__UTIL_BASE64_H
|
|
|
|
|
2020-10-05 14:14:55 -04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2021-01-02 10:20:27 -05:00
|
|
|
char *base64_encode(char *);
|
2022-01-30 08:48:43 -05:00
|
|
|
char *base64_decode(const char *);
|
2005-09-15 09:58:31 -04:00
|
|
|
|
2021-01-02 10:20:27 -05:00
|
|
|
char *base64_encode_bin(char *, int, int *);
|
2022-01-30 08:48:43 -05:00
|
|
|
char *base64_decode_bin(const char *, int, int *);
|
2006-06-14 08:41:59 -04:00
|
|
|
|
2020-10-05 14:14:55 -04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2005-09-15 09:58:31 -04:00
|
|
|
#endif
|