ppp
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Credentials.java 331B

123456789101112131415
  1. public class Credentials {
  2. private String login;
  3. private String hash;
  4. public Credentials(String login, String password) {
  5. for (String line:
  6. Helpers.readTextdatei("data/passwd.txt")) {
  7. System.out.println(line);
  8. }
  9. }
  10. public boolean valid() {
  11. return false;
  12. }
  13. }