Advertisement
Guest User

Untitled

a guest
Nov 24th, 2014
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. public void breakPassword(int sizeOfPassword) {
  2. char[] possibleChars = getCharacters();
  3. char[] pass = new char[sizeOfPassword];
  4. int position = 0;
  5.  
  6. for(int i = 0; i < possibleChars.length; i++) {
  7. pass[position] = possibleChars[i];
  8. System.out.println(pass);
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement