Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How do I generate cryptographically secure random numbers in javascript?

share|improve this question
2  
What exactly do you mean by "cryptographically"? Use Math.random() to return a random number between 0 and 1. Its technically pseudo random, since there isn't really any (simple) way to generate true random numbers. – Logic Artist Nov 3 '10 at 0:16
7  
I think the question is asking for a random number generator that is suitable for cryptography. Eg. The modulo RND implemented by default by many languages would not be suitable. – winwaed Nov 3 '10 at 0:22
4  
@logic - en.wikipedia.org/wiki/… – Kyle Nov 3 '10 at 0:57
@Logic Artist -- No, Math.random is not cryptographically secure. Cryptographically secure is a standard term that means that the value is unpredictable, even to an adversary who is willing to invest a significant amount of time and energy trying to predict it or distinguish it from random. – D.W. Sep 18 '11 at 3:36

3 Answers

up vote 9 down vote accepted

You can for instance use mouse movement as seed for random numbers, read out time and mouse position whenever the onmousemove event happens, feed that data to a whitening function and you will have some first class random at hand. Though do make sure that user has moved the mouse sufficiently before you use the data.

Edit: I have myself played a bit with the concept by making a password generator, I wouldn't guarantee that my whitening function is flawless, but being constantly reseeded I'm pretty sure that it's plenty for the job: http://ebusiness.hopto.org/generator.htm

share|improve this answer
4  
Here is a crypto library with a BSD licence, and a random number generator: crypto.stanford.edu/sjcl – eBusiness Nov 3 '10 at 10:23
That does appear to meet the OPs requirements. – GregS Nov 4 '10 at 0:18
SJCL (the Stanford Crypto Library) looks like an excellent choice. They have a published paper that describes in detail how they generate cryptographically random numbers, and their approach looks solid and well-thought out. – D.W. Sep 18 '11 at 3:40
Awesome. Great answer! – trusktr Oct 20 '12 at 19:09
I have a suggestion eBusiness: Add a delimitor field which would cause that string to be insterted between each .password span tag to make copying/pasting/manipulating easy. For example, currently, if I copy and paste the generated strings, they will be pasted as one long string. – trusktr Oct 20 '12 at 19:36

There's been discussion at WHATWG on adding this to the window.crypto object. You can read the discussion and check out the proposed API and webkit bug (22049). Just tested the following code in Chrome to get a random byte:

(function(){var buf = new Uint8Array(1); window.crypto.getRandomValues(buf); alert(buf[0]) } )()
share|improve this answer

You might want to try http://sourceforge.net/projects/clipperzlib/ It has an implementation of Fortuna which is a cryptographically secure random number generator. (Take a look at src/js/Clipperz/Crypto/PRNG.js). It appears to use the mouse as a source of randomness as well.

share|improve this answer
More detailed information about the library is available here clipperz.com/open_source/javascript_crypto_library – ameer Nov 3 '10 at 0:29
Good answer, unfortunately it's licensed under the AGPL which I don't think is compatible with my project. – Kyle Nov 3 '10 at 1:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.