Package org.passay
Interface PasswordData.Salt
-
- All Known Implementing Classes:
PasswordData.PrefixSalt
,PasswordData.SuffixSalt
- Enclosing class:
- PasswordData
public static interface PasswordData.Salt
Combines salt (additional external data) with a password before applying a digest algorithm to them.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
applyTo(String password)
Applies the salt to the password, returning the combined string to be digested.
-