Fix Encryptors.java javadoc

Fix link issue in 'See Also' section of Encryptors.standard method
This commit is contained in:
Prashant Tholia 2021-04-03 00:11:53 +05:30 committed by Josh Cummings
parent 6e0d9e679e
commit 67fdac1db1
1 changed files with 1 additions and 1 deletions

View File

@ -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));