mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-15 03:01:09 +08:00
8c5868b500
SHA1 support is contributed by Daniel J. Gregor <dj@gregor.com> MD5 support is contributed by me <kurt@OpenLDAP.org> Uses public domain MD5 routines Uses ISC/IBM freely redistributable Base64 routines SHA1 support requires external SHA1 routines
13 lines
249 B
C
13 lines
249 B
C
#ifndef _LUTIL_H
|
|
#define _LUTIL_H 1
|
|
|
|
/*
|
|
* Include file for LDAP utility routine
|
|
*/
|
|
|
|
/* ISC Base64 Routines */
|
|
extern int b64_ntop(u_char const *, size_t, char *, size_t);
|
|
extern int b64_pton(char const *, u_char *, size_t);
|
|
|
|
#endif /* _LUTIL_H */
|