digitalmars.D - Any cryptographically secure pseudo-random number generator (CSPRNG)
- ilya-stromberg (6/6) Aug 18 2013 Hi,
- QAston (4/10) Aug 18 2013 You may be interested in
- Walter Bright (3/14) Aug 18 2013 I agree. I'd call a C one from D that is accepted by the crypto communit...
- ilya-stromberg (3/6) Aug 19 2013 How can I get access to the /dev/random or /dev/urandom (Linux
- John Colvin (2/8) Aug 19 2013 I don't know of any special function to access them.
- Walter Bright (2/7) Aug 19 2013 Access using the usual file I/O functions.
Hi, Do you know any cryptographically secure pseudo-random number generator (CSPRNG) for D? I know that we have std.random, but it is NOT cryptographically secure. Thanks.
Aug 18 2013
On Sunday, 18 August 2013 at 10:14:29 UTC, ilya-stromberg wrote:Hi, Do you know any cryptographically secure pseudo-random number generator (CSPRNG) for D? I know that we have std.random, but it is NOT cryptographically secure. Thanks.You may be interested in https://github.com/D-Programming-Deimos/openssl - D bindings for openssl.
Aug 18 2013
On 8/18/2013 12:32 PM, QAston wrote:On Sunday, 18 August 2013 at 10:14:29 UTC, ilya-stromberg wrote:I agree. I'd call a C one from D that is accepted by the crypto community as secure, rather than invent an insecure one.Hi, Do you know any cryptographically secure pseudo-random number generator (CSPRNG) for D? I know that we have std.random, but it is NOT cryptographically secure. Thanks.You may be interested in https://github.com/D-Programming-Deimos/openssl - D bindings for openssl.
Aug 18 2013
On Sunday, 18 August 2013 at 19:32:50 UTC, QAston wrote:You may be interested in https://github.com/D-Programming-Deimos/openssl - D bindings for openssl.How can I get access to the /dev/random or /dev/urandom (Linux only)? Like a file via std.file, or D have spesial function?
Aug 19 2013
On Monday, 19 August 2013 at 15:56:04 UTC, ilya-stromberg wrote:On Sunday, 18 August 2013 at 19:32:50 UTC, QAston wrote:I don't know of any special function to access them.You may be interested in https://github.com/D-Programming-Deimos/openssl - D bindings for openssl.How can I get access to the /dev/random or /dev/urandom (Linux only)? Like a file via std.file, or D have spesial function?
Aug 19 2013
On 8/19/2013 8:56 AM, ilya-stromberg wrote:On Sunday, 18 August 2013 at 19:32:50 UTC, QAston wrote:Access using the usual file I/O functions.You may be interested in https://github.com/D-Programming-Deimos/openssl - D bindings for openssl.How can I get access to the /dev/random or /dev/urandom (Linux only)? Like a file via std.file, or D have spesial function?
Aug 19 2013