> > Date: Wed, 29 Mar 2000 13:13:21 -0800
> > From: Wei Dai <[EMAIL PROTECTED]>
> > To: [EMAIL PROTECTED]
> > Cc: [EMAIL PROTECTED]
> > Subject: Re: Entropy-gathering gizmos for NT?
> >
> > On Wed, Mar 29, 2000 at 07:54:03AM -0800, [EMAIL PROTECTED] wrote:
> > > I'm curious about what all entropy-gathering gizmos, a la "Entropy Gathering
> > > Deamon" (EGD) <url:http://www.lothar.com/tech/crypto/>, might be available
> > > for/on NT -- anyone know?
> > >
> > > My understanding is that such stuff is effectively built-into Win2K -- anyone
> > > have comments/observations on that?
> >
> > It's built into Microsoft's base CryptoAPI service provider, which is
> > available on Win2K and any Windows OS after Windows 95 I think. You can
> > do something like this:
> >
> > // untested
> > HCRYPTPROV hProvider = 0;
> > BYTE randomBytes[128];
> > CryptAcquireContext(&hProvider, 0, 0, PROV_RSA_FULL, CRYPT_VERIFYCONTEXT);
> > CryptGenRandom(hProvider, sizeof(randomBytes), randomBytes);
does anyone know the source of entropy that for the "internal seed" (as the Windows
documentation
for CyrptGenRandom describes it)?
And how good the entropy is?
- sanket