Interface HashComputation


public interface HashComputation
Defines an interface to compute the hash of a password.
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    computeHash(String password, String salt)
    Returns the hash of the specified password, after adding salt.
  • Method Details

    • computeHash

      String computeHash(String password, String salt)
      Returns the hash of the specified password, after adding salt.