Login Register


[JAVA] MD5 Bruteforcer filter_list
Author
Message
RE: [JAVA] MD5 Bruteforcer #6
Another possibility to initialize the alphabet:

Code:
public static char[] initAllowedCharacters(int start, int end) { char[] allowedCharacters = new char[end - start + 1]; for (int i = start; i <= end; i++) { allowedCharacters[i - start] = (char) i; } return allowedCharacters; }

I.e. for the letters a-z you do:
Code:
char[] alphabet = initAllowedCharacters('a', 'z');

Reply





Messages In This Thread
[JAVA] MD5 Bruteforcer - by The Alchemist - 09-19-2012, 12:45 PM



Users browsing this thread: 1 Guest(s)