I need an implementation of AES(Rijndael) in java that allows use of a 320-bit key.
Please suggest a reliable implementation
|
I need an implementation of AES(Rijndael) in java that allows use of a 320-bit key. Please suggest a reliable implementation |
|||||||||||||
|
Questions on Cryptography Stack Exchange are expected to relate to cryptography within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.
|
AES only comes in variations with key sizes of 128, 192 or 256 bits. If your issue is that the key you want to use is 320 bits, you can use a key derivation algorithm such as PBKDF2 to transform your secret into a key with a valid length. |
|||||
|