RE: Number of Possible Passwords? 10-23-2012, 03:21 PM
#2
The number of possible combinations of a given keyspace is x^y, where x is the length of the keyspace and y is the length of the desired output.
IE, in your keyspace, for 4 characters, there is 96^4 possibilities.
Research before you implement a program.
There are 93238349796903051837918452757470307165930029979252129792 possible passwords using those characters, with a length between 3 and 30. The program took less one fourth of a second to run, whereas I'm sure your program takes longer.
IE, in your keyspace, for 4 characters, there is 96^4 possibilities.
Research before you implement a program.
There are 93238349796903051837918452757470307165930029979252129792 possible passwords using those characters, with a length between 3 and 30. The program took less one fourth of a second to run, whereas I'm sure your program takes longer.