mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-06-01 09:42:13 +00:00
Fix Encryptors.java javadoc
Fix link issue in 'See Also' section of Encryptors.standard method
This commit is contained in:
parent
6e0d9e679e
commit
67fdac1db1
@ -63,7 +63,7 @@ public final class Encryptors {
|
|||||||
* @param salt a hex-encoded, random, site-global salt value to use to generate the
|
* @param salt a hex-encoded, random, site-global salt value to use to generate the
|
||||||
* key
|
* key
|
||||||
*
|
*
|
||||||
* @see #stronger(CharSequence, CharSequence)
|
* @see Encryptors#stronger(CharSequence, CharSequence)
|
||||||
*/
|
*/
|
||||||
public static BytesEncryptor standard(CharSequence password, CharSequence salt) {
|
public static BytesEncryptor standard(CharSequence password, CharSequence salt) {
|
||||||
return new AesBytesEncryptor(password.toString(), salt, KeyGenerators.secureRandom(16));
|
return new AesBytesEncryptor(password.toString(), salt, KeyGenerators.secureRandom(16));
|
||||||
|
Loading…
x
Reference in New Issue
Block a user