removed PasswordGenerator.main

unused method, probably for debugging/testing purposes

Signed-off-by: Laszlo Hornyak <laszlo.hornyak@gmail.com>
This commit is contained in:
Laszlo Hornyak 2013-10-10 20:22:22 +02:00
parent 5cc411a9ee
commit b76e501d26
1 changed files with 0 additions and 9 deletions

View File

@ -95,13 +95,4 @@ public class PasswordGenerator {
return newPassword.toString();
}
public static void main(String [] args) {
for (int i=0; i < 100; i++) {
System.out.println("PSK: " + generatePresharedKey(24));
}
for (int i=0; i < 100; i++) {
System.out.println("Password: " + generateRandomPassword(6));
}
}
}