Package dubious.sub.goobi.helper.encryption

Examples of dubious.sub.goobi.helper.encryption.MD5


  /**
   * Passwort eingeben
   */
  public String Weiter() {
    this.passwort = new MD5(this.passwort).getMD5();
    String adminMd5 = ConfigMain.getParameter("superadminpassword");
    this.istPasswortRichtig = (this.passwort.equals(adminMd5));
    if (!this.istPasswortRichtig) {
      Helper.setFehlerMeldung("wrong passworwd", "");
    }
View Full Code Here

TOP

Related Classes of dubious.sub.goobi.helper.encryption.MD5

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.