なるべく速くランダムなデータを生成したい
dd if=/dev/urandom
が 6MB/s 程度。
openssl rand $(( 16 * 1024 * 1024 ))
を while true
で回して 14MB/s 。
で、こんな感じでぶん回して 28MB/s:
{ while true; do openssl rand $(( 16 * 1024 * 1024 )) & openssl rand $(( 16 * 1024 * 1024 )); wait; done; }
dd if=/dev/urandom
が 6MB/s 程度。
openssl rand $(( 16 * 1024 * 1024 ))
を while true
で回して 14MB/s 。
で、こんな感じでぶん回して 28MB/s:
{ while true; do openssl rand $(( 16 * 1024 * 1024 )) & openssl rand $(( 16 * 1024 * 1024 )); wait; done; }