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.

I had generate a 256 bits random keys into a file.

The plan is to using the 256 bits random key as a source to generate a RSA (public and private) key.

Anyone kind soul know how I can do it?

share|improve this question
Just a note: RSA keys are usually much longer than that (at least 1024 bits is common), and need correspondingly more random bits to be really secure. – PaĆ­lo Ebermann Aug 26 '11 at 11:28

1 Answer

up vote 3 down vote accepted

I think you can generate keys using KeyPairGenerator, which can be initialized with SecureRandom. SecureRandom has constructor which takes array of bytes as seed.

share|improve this answer

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.