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.
|
|
|
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. |
||||
|
|