3 * Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved.
4 * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
11 #include <ac/unistd.h>
13 #ifdef HAVE_WINCRYPT_H
23 #include <lutil_md5.h>
26 * lutil_entropy() provides nbytes of entropy in buf.
27 * Quality offerred is suitable for one-time uses, such as "once" keys.
28 * Values may not be suitable for multi-time uses.
30 * Note: Callers are encouraged to provide additional bytes of
31 * of entropy in the buf argument. This information is used in
32 * fallback mode to improve the quality of bytes returned.
34 * This routinue should be extended to support additional sources
37 int lutil_entropy( unsigned char *buf, ber_len_t nbytes )
39 if( nbytes == 0 ) return 0;
42 /* Linux and *BSD offer a urandom device */
46 fd = open( URANDOM_DEVICE, O_RDONLY );
48 if( fd < 0 ) return -1;
50 rc = read( fd, buf, nbytes );
53 /* should return nbytes */
54 if( rc < nbytes ) return -1;
60 /* Not used since _WIN32_WINNT not set... */
63 /* Get handle to user default provider */
64 if(!CryptAcquireContext(&hProv, NULL, NULL, PROV_RSA_FULL, 0)) {
68 /* Generate random initialization vector */
69 if(!CryptGenRandom(hProv, (DWORD) nbytes, (BYTE *) buf)) {
73 /* Release provider handle */
74 if(hProv != 0) CryptReleaseContext(hProv, 0);
80 /* based upon Phil Karn's "practical randomness" idea
81 * but implementation 100% OpenLDAP. So don't blame Phil.
83 * Worse case is that this is a MD5 hash of a counter, if
84 * MD5 is a strong cryptographic hash, this should be fairly
89 * the caller may need to provide external synchronization OR
90 * provide entropy (in buf) to ensure quality results as
91 * access to this counter may not be atomic.
93 static int counter = 0;
100 struct rdata_s *stack;
104 #ifdef HAVE_GETTIMEOFDAY
110 unsigned long junk; /* purposely not initialized */
113 /* make sure rdata differs for each process */
114 rdata.pid = getpid();
116 /* make sure rdata differs for each program */
118 rdata.stack = &rdata;
120 for( n = 0; n < nbytes; n += 16 ) {
121 struct lutil_MD5Context ctx;
124 /* poor resolution */
125 #ifdef HAVE_GETTIMEOFDAY
126 (void) gettimeofday( &rdata.tv, NULL );
128 (void) time( &rdata.time );
131 /* make sure rdata differs */
132 rdata.counter = ++counter;
136 lutil_MD5Init( &ctx );
137 lutil_MD5Update( &ctx, (unsigned char *) &rdata, sizeof( rdata ) );
139 /* allow caller to provided additional entropy */
140 lutil_MD5Update( &ctx, buf, nbytes );
142 lutil_MD5Final( digest, &ctx );
144 AC_MEMCPY( &buf[n], digest,
145 nbytes - n >= 16 ? 16 : nbytes - n );