All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.dreampie.common.plugin.shiro.hasher.HasherInfo Maven / Gradle / Ivy

There is a newer version: 1.2.2
Show newest version
package cn.dreampie.common.plugin.shiro.hasher;

/**
 * Created by wangrenhui on 14-5-5.
 */
public class HasherInfo {
  String hashText;
  String hashResult;
  Hasher hasher;
  String salt;

  public HasherInfo(String hashText, String hashResult, Hasher hasher, String salt) {
    this.hashText = hashText;
    this.hashResult = hashResult;
    this.hasher = hasher;
    this.salt = salt;
  }

  public Hasher getHasher() {
    return hasher;
  }

  public void setHasher(Hasher hasher) {
    this.hasher = hasher;
  }

  public String getSalt() {
    return salt;
  }

  public void setSalt(String salt) {
    this.salt = salt;
  }

  public String getHashText() {
    return hashText;
  }

  public void setHashText(String hashText) {
    this.hashText = hashText;
  }

  public String getHashResult() {
    return hashResult;
  }

  public void setHashResult(String hashResult) {
    this.hashResult = hashResult;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy