bind9/contrib/sdb/ldap
Ondřej Surý 3a4f820d62 Replace all random functions with isc_random, isc_random_buf and isc_random_uniform API.
The three functions has been modeled after the arc4random family of
functions, and they will always return random bytes.

The isc_random family of functions internally use these CSPRNG (if available):

1. getrandom() libc call (might be available on Linux and Solaris)
2. SYS_getrandom syscall (might be available on Linux, detected at runtime)
3. arc4random(), arc4random_buf() and arc4random_uniform() (available on BSDs and Mac OS X)
4. crypto library function:
4a. RAND_bytes in case OpenSSL
4b. pkcs_C_GenerateRandom() in case PKCS#11 library
2018-05-16 09:54:35 +02:00
..
INSTALL.ldap 1707. [contrib] sdb/ldap updated to version 1.0-beta. 2004-08-27 00:07:23 +00:00
ldapdb.c [master] fix SDB bug 2014-10-02 23:24:07 -07:00
ldapdb.h Added the contributed LDAP sdb driver and program to convert a zone into an 2001-03-14 20:22:32 +00:00
README.ldap 1707. [contrib] sdb/ldap updated to version 1.0-beta. 2004-08-27 00:07:23 +00:00
README.zone2ldap 4231. [contrib] Address unchecked memory allocation calls in 2015-09-30 15:46:55 +10:00
zone2ldap.1 update from the author 2001-06-08 18:40:35 +00:00
zone2ldap.c Replace all random functions with isc_random, isc_random_buf and isc_random_uniform API. 2018-05-16 09:54:35 +02:00

INSTALLATION

To Compile zone2ldap from contrib/sdb directory:

   gcc -g `../../../isc-config.sh --cflags isc dns` -c zone2ldap.c
   gcc -g -o zone2ldap zone2ldap.o `../../../isc-config.sh --libs isc dns` -lldap -llber -lresolv

USAGE:

See zone2ldap.1

BUGS:

Jeff McNeil <jeff@snapcase.g-rock.net>