Java PBEWithMD5AndDES

后端 未结 3 1200
予麋鹿
予麋鹿 2021-02-20 05:18

I am using password based encryption. My initial thought was to use AES to encrypt the file which contains passwords. Turns out password based encryption does not support AES. I

3条回答
  •  天命终不由人
    2021-02-20 05:47

    You should not be keeping the passwords in any form other than salted hash digests.

    You should then use the operating system permission system to make it such that the hashed password file is only readable by the user which validates passwords.

提交回复
热议问题