<html><head><meta http-equiv="Content-Type" content="text/html charset=utf-8"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class=""><br class=""><div><blockquote type="cite" class=""><div class="">On Jan 21, 2016, at 1:00 PM, Erica Sadun via swift-users &lt;<a href="mailto:swift-users@swift.org" class="">swift-users@swift.org</a>&gt; wrote:</div><br class="Apple-interchange-newline"><div class=""><div class="" style="font-family: Alegreya-Regular; font-size: 15px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;">* In terms of cross-platform random numbers, there are any number of third party libraries and you can use rand() on many platforms</div></div></blockquote></div><br class=""><div class="">rand() is deprecated because it uses a poor algorithm that doesn’t provide enough randomness. From the random(3) man page:</div><div class=""><br class=""></div><div class="">&nbsp; &nbsp; &nbsp;The&nbsp;random() and&nbsp;srandom() functions have (almost) the same calling<br class="">&nbsp; &nbsp; &nbsp;sequence and initialization properties as the rand(3) and srand(3) func-<br class="">&nbsp; &nbsp; &nbsp;tions.&nbsp;&nbsp;The difference is that <b class="">rand(3) produces a much less random<br class="">&nbsp; &nbsp; &nbsp;sequence -- in fact, the low dozen bits generated by rand go through a<br class="">&nbsp; &nbsp; &nbsp;cyclic pattern.</b>&nbsp;&nbsp;All of the bits generated by&nbsp;random() are usable.&nbsp;&nbsp;For<br class="">&nbsp; &nbsp; &nbsp;example, `random()&amp;01' will produce a random binary value.<br class=""><br class=""></div><div class="">I’d forgotten that random()s sidekick function srandomdev() seeds the RNG with a cryptographic source of entropy, making it usable for secure purposes. So these would be good functions to implement a Swift RNG with.</div><div class=""><br class=""></div><div class="">—Jens</div></body></html>