[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

RE: svnserve processes

From: Dale Worley <dworley_at_pingtel.com>
Date: 2005-02-14 15:51:34 CET

How to deal with "randomness" depends on its purpose. Linux's /dev/random
is specifically designed to produce cryptographic-quality random numbers,
successive bytes are not determinable from the preceding bytes by any
method. So it's great for generating cryptographic keys. But if you only
need bytes that are statistically unrelated to each other with respect to
any process that your code is already using, use /dev/urandom. As long as
you don't care if a dedicated adversary can guess the values you received,
/dev/urandom is adequately random, and doesn't have blocking problems.

Dale

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Mon Feb 14 15:59:04 2005

This is an archived mail posted to the Subversion Users mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.