Hi,
I'm heavily using nextRandom (V4) and I have exhausted the resources :
/dev/urandom: openFd: resource exhausted (Too many open files)
I didn't know you were using getEntropy behind :
-- On some platforms this requies a file handle which can lead to resource
-- exhaustion in some situations.
getEntropy :: Int -- ^ Number of bytes
-> IO B.ByteString
getEntropy = bracket openHandle closeHandle . flip hGetEntropy
Can't we have something not using the file system ?
Hi, I'm heavily using nextRandom (V4) and I have exhausted the resources :
I didn't know you were using getEntropy behind :
Can't we have something not using the file system ?