openldap/include/lutil.h
Kurt Zeilenga 8c5868b500 Add basic support for MD5 and SHA1 passwords.
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
1998-09-02 21:31:35 +00:00

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 */