Software Engineering “im WiSe18"
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 246B

123456789101112131415161718192021222324252627
  1. public class Credentials {
  2. String login;
  3. String hash;
  4. Credentials(String lg, String pw){
  5. login = lg;
  6. hash = pw;
  7. }
  8. public boolean valid(){
  9. return
  10. }
  11. public static void main{
  12. }
  13. }