Skip to content

SCryptPasswordEncoder#

SCryptPasswordEncoder#

  • SCryptPasswordEncoder use a SCrypt hashing function to encode the password. For the SCryptPasswordEncoder, you have two options to create its instances:
1
2
PasswordEncoder p = new SCryptPasswordEncoder();
PasswordEncoder p = new SCryptPasswordEncoder(16384, 8, 1, 32, 64);

See Also#

References#