rizin/libr/include/r_util/r_base64.h
2016-07-10 15:02:01 +02:00

8 lines
305 B
C

#ifndef R_BASE64_H
#define R_BASE64_H
R_API int r_base64_encode(char *bout, const ut8 *bin, int len);
R_API int r_base64_decode(ut8 *bout, const char *bin, int len);
R_API ut8 *r_base64_decode_dyn(const char *in, int len);
R_API char *r_base64_encode_dyn(const char *str, int len);
#endif // R_BASE64_H