标签:io ar os sp for on ad linux as
If you want random data in a Linux/Unix type OS, the standard way to do so is to use /dev/random or /dev/urandom. These devices are special files. They can be read like normal files and the read data is generated via multiple sources of entropy in the system which provide the randomness.
/dev/random will block after the entropy pool is exhausted. It will remain blocked until additional data has been collected from the sources of entropy that are available. This can slow down random data generation.
/dev/urandom will not block. Instead it will reuse the internal pool to produce more pseudo-random bits.
/dev/urandom is best used when:
/dev/random is likely to be the better choice when:
标签:io ar os sp for on ad linux as
原文地址:http://www.cnblogs.com/bittorrent/p/4083581.html