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.

Delving into the java encryption and hashing world I see examples of the constructor for the PBEKeySpec class with various values for the inerationCount and the keyLength parameters. Nothing seems to explain what these parameters impact or mean. I am assuming that keyLength is how long the key is so 32 bit encryption would take a value of 32 for the keylength, but that assumption feels wrong. My guess for the iterationCount is the number of times each char is encrypted, again not feeling the love on that assumption either. Links to info or an explanation are appreciated. Heck even good key words to google on would be nice. Thanks in advance for helping reduce my ignorance.

share|improve this question

1 Answer

up vote 8 down vote accepted

Iteration count is the number of times that the password is hashed during the derivation of the symmetric key. The higher number, the more difficult it is to brute force the key. If the number is not widely used (e.g. 1000 is widely used) then you cannot brute force using rainbow tables.

The key length is the length of the derived symmetric key. A DESede key can be either 128 or 192 bits long (including parity bits). An AES key can be 128, 192 or 256 bits long. The problem is that it is not specified by the API which key length is meant (normally it's bits, and includes parity information within the Java API).

The key derivation function normally just outputs "enough" random bits, so that's why you can still specify the required key size.

Note: for the PBKDF2 function for which PBEKeySpec is normally used, look at the specifics in the standard, PKCS standards tend to be relatively easy to read.

share|improve this answer
Anything wrong/unclear with my answer, Mark? – owlstead Aug 2 '12 at 22:32

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.