Is it possible to encrypt a file in Java with AES algorithm of Block size 128 bits and key size 256 characters(bytes) ?
As per references the key size can be of maximum 256 bits or 32 characters.
I have a requirement to do with 256 characters, is it possible ?
PBKDF2(akaRfc2898DeriveBytes),password_hash/password_verify,Bcryptand similar functions. The point is to make the attacker spend a lot of time finding passwords by brute force. Protecting your users is important, please use secure password methods. - zaph