问题描述
final Random r = new SecureRandom();
byte[] salt = new byte[32];
r.nextBytes(salt);
/** String encodedSalt = Base64.encodeBase64String(salt); */
解决方法
在Java中以至少32个字节长的String形式生成SALT值的最佳方法是什么?
final Random r = new SecureRandom();
byte[] salt = new byte[32];
r.nextBytes(salt);
/** String encodedSalt = Base64.encodeBase64String(salt); */
在Java中以至少32个字节长的String形式生成SALT值的最佳方法是什么?