/* Generate a Password object with a random password. */ StringBuffer sb = new StringBuffer(); for (int i=0; i < MIN_LENGTH; i++) { sb.append(goodChar[r.nextInt(goodChar.length)]); } return sb.toString();
for (int i=0; i<20; i++) { System.out.println(PassPhrase.getNext()); }