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
|
||||
* key
|
||||
*
|
||||
* @see #stronger(CharSequence, CharSequence)
|
||||
* @see Encryptors#stronger(CharSequence, CharSequence)
|
||||
*/
|
||||
public static BytesEncryptor standard(CharSequence password, CharSequence salt) {
|
||||
return new AesBytesEncryptor(password.toString(), salt, KeyGenerators.secureRandom(16));
|
||||
|
|
Loading…
Reference in New Issue