Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I intend to use SecureRandom in java to generate a cryptographic secure random number. But I have a design consideration as to how many bits should the number be in order to be consider secure. Any sources that I can refer to?

share|improve this question
4  
What does it mean if a "number is secure"? Is 1 a secure number? Is 27 a secure number? How about 2^32-1? How many bytes you need depends entirely on what you want to use the number for. – Joachim Sauer Mar 2 '11 at 13:40
1  
@Joachim, the definition of cryptographically secure random number is usually that the ability of an attacker who can observe previous numbers to guess the next number is close to 1/pow(2, nbits). – Mike Samuel Mar 2 '11 at 15:55
How long is this random number generator going to be used? How many numbers are likely to be sent over channels visible to an attacker or colluding group of attackers? – Mike Samuel Mar 2 '11 at 15:56
1  
@Mike: if I understand correctly, then a truly random 1-bit number would be considered secure because no attacker can predict the next number with a reliability > 1/2, no matter how many previous numbers he observed. For me, this implies (or strongly suggests) that the strength of the algorithm is more important than the length of the random number. – Joachim Sauer Mar 2 '11 at 16:03
2  
@Joachim, you are correct. The original question can probably be clarified to one of two question. (1) How many bits of entropy do I need to seed my SPRNG with to prevent an attacker from predicting the numbers I subsequently generate? Or (2) Given a suitably seeded random number generator, how many bits should the secrets I generate have to survive brute-forcing by an attacker? The OPer is not answering, but I suspect they are asking (1). – Mike Samuel Mar 2 '11 at 16:57
show 4 more comments

closed as not constructive by George Stocker Nov 22 '12 at 23:08

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.