将Java中的SALT值生成为至少32字节长的字符串的最佳方法是什么?
答案 0 :(得分:43)
final Random r = new SecureRandom();
byte[] salt = new byte[32];
r.nextBytes(salt);
/** String encodedSalt = Base64.encodeBase64String(salt); */
答案 1 :(得分:2)
在SpringSecurity中,您可以使用org.springframework.security.crypto.keygen.KeyGenerators