
git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@387 ec53bebd-3082-4978-b11e-865c3cabbd6b
8 lines
154 B
C
8 lines
154 B
C
#ifndef _BASE64_H_
|
|
#define _BASE64_H_
|
|
|
|
int base64_encode(const void *data, int size, char **str);
|
|
int base64_decode(const char *str, void *data);
|
|
|
|
#endif
|