delan (Delan Azabani)
- Login: delan
- Registered on: 05/04/2016
- Last sign in: 05/24/2016
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 0 | 0 |
Activity
05/24/2016
-
06:43 AM Ruby Bug #9569: SecureRandom should try /dev/urandom first
- Yui NARUSE wrote:
> getrandom has some limitations like its max output (33554431), and consumes entropy.
This probably won’t add much to the conversation, but getrandom(2) and /dev/random don’t “consume” entropy any more than /dev/ur...
05/04/2016
-
02:07 AM Ruby Bug #9569: SecureRandom should try /dev/urandom first
- For anyone reading this thread after me:
* `SecureRandom.gen_random` calls `OpenSSL::Random.random_bytes` before falling back on `Random.raw_seed` [1]
* `Random.raw_seed` calls `fill_random_bytes` [2]
* `fill_random_bytes` calls `fi...