Interface HashProcessor
- All Known Implementing Classes:
LazyHashProcessor,NoHashProcessor,SecureHashProcessor
public interface HashProcessor
Used to process Hash text for passwords
-
Method Summary
-
Method Details
-
hash
produce hash text from plain text- Parameters:
plainText- Plain text input- Returns:
- the Hash value of the input plain text
- Throws:
Exception
-
compare
compare the plain char array against the hash value- Parameters:
inputValue- value of the plain textstoredHash- the existing hash value- Returns:
- true if the char array matches the hash value, otherwise false.
-