mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-28 04:34:54 -04:00
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 |
||
|---|---|---|
| .. | ||
| INSTALL.ldap | ||
| ldapdb.c | ||
| ldapdb.h | ||
| README.ldap | ||
| README.zone2ldap | ||
| zone2ldap.1 | ||
| zone2ldap.c | ||
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>