1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-18 01:26:23 -04:00
elinks/src/util/base64.h
Laurent MONIN 4b04a25b32 Support for negotiate-auth, using GSSAPI. It makes possible to
authenticate users by Kerberos. Patch by Karel Zak.
2006-06-14 14:41:59 +02:00

11 lines
282 B
C

#ifndef EL__UTIL_BASE64_H
#define EL__UTIL_BASE64_H
unsigned char *base64_encode(unsigned char *);
unsigned char *base64_decode(unsigned char *);
unsigned char *base64_encode_bin(unsigned char *, int, int *);
unsigned char *base64_decode_bin(unsigned char *, int, int *);
#endif