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

cn.dreampie.security.PasswordService Maven / Gradle / Ivy

package cn.dreampie.security;

/**
 * Created by ice on 14-12-23.
 */
public interface PasswordService {

  public String crypto(String password);

  public String crypto(String password, String salt);

  public boolean match(String password, String result);

  public boolean match(String password, String result, String salt);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy