Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

Forking and threading are different things. Forking creates new processes and duplicates memory. It raises entirely different issues from multi-threading, which does neither. See: http://stackoverflow.com/q/2483041/331041

They discussed forking, but did not discuss multi-threading.



So for OpenSSL's RNG vs. the operating system's CSPRNG is there a difference between forking and multi-threading?


Yes. The problem with an in-process RNG and forking is that the RNG state is duplicated, so both processes get the same sequence of numbers. Multithreading just needs locking to prevent corruption because the state is shared.


Thanks for taking the time to explain.




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: