Browse Source

Konstruktor

master
Bruno Klasing 1 year ago
parent
commit
f7f967324c
1 changed files with 6 additions and 4 deletions
  1. 6
    4
      src/Credentials.java

+ 6
- 4
src/Credentials.java View File

@@ -3,13 +3,15 @@ public class Credentials {
private String hash;

public Credentials(String login, String password) {
this.hash = Helpers.getHash(password);
this.login = login;
}

public boolean valid() {
for (String line:
Helpers.readTextdatei("data/passwd.txt")) {
System.out.println(line);
}
}

public boolean valid() {
return false;
return false;
}
}

Loading…
Cancel
Save