Acceptable Pseudo Password Length?
There's an easy way to figure this out.
First, how many unique characters are allowed in each "digit"? If it only allows numbers, that's 10. If it's lower case and upper case letters, and numbers, that's 26 + 26 + 10, or 62. If it also allows special characters, add those as well.
Then, what is the range of password lengths allowed? If there is no minimum, we start at 1 character, but let's say 6 just for the sake of things.
now how long is yours? 10 characters? If you want to check all possible passwords use the maximum allowed length, but if you only worry about your own, use your length.
Now, where chars is that number we got first (maybe 62?), min is the minimum length (6?) and max is the maximum length (10?), this is the equation for the number of combinations:

Using the numbers I mentioned, we get 853058370935030464. If you can check 1 billion combinations per second, that's about 27 years to crack
If you have better hardware though, this number could come down.

Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now