mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-04 08:17:17 -05:00
4b04a25b32
authenticate users by Kerberos. Patch by Karel Zak.
11 lines
282 B
C
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
|