Javaで少なくとも32バイトの文字列としてSALT値を生成する最良の方法は何ですか?
final Random r = new SecureRandom();
byte[] salt = new byte[32];
r.nextBytes(salt);
/** String encodedSalt = Base64.encodeBase64String(salt); */
SpringSecurityでは、org.springframework.security.crypto.keygen.KeyGenerators
を使用できます