Hello guys,
I need help on this types of password and probably algorithm or sample code on how to generate them
- random passwords
- masked passwords
- passcode (numbers only)
- leet passwords -
- typewriter passwords
- "pronounceable" passwords
- Hash-based passwords
Google is not giving me anything.
Generating Different types passwords
Started by avosoft, May 16 2010 04:39 PM
7 replies to this topic
#1
Posted 16 May 2010 - 04:39 PM
|
|
|
#2
Posted 16 May 2010 - 05:00 PM
Can you clarify what you mean?
#3
Posted 17 May 2010 - 06:48 AM
Hello, thanks for replying.
These are different types of password i found on Password generator to generate good, secure, random and easy to remember passwords..
The have a password engine that am trying to emulate, but don't have enough information on generating these types of passwords
I have found solution for generating three of them, i need help in these ones
- masked passwords
- leet passwords -
- typewriter passwords
- "pronounceable" passwords
Any ideas
These are different types of password i found on Password generator to generate good, secure, random and easy to remember passwords..
The have a password engine that am trying to emulate, but don't have enough information on generating these types of passwords
I have found solution for generating three of them, i need help in these ones
- masked passwords
- leet passwords -
- typewriter passwords
- "pronounceable" passwords
Any ideas
#4
Posted 17 May 2010 - 07:37 AM
Leet password probably just does things like replace "A" with "4", etc.
#5
Posted 17 May 2010 - 08:04 AM
Thanks i later found on that website how to generate leet password
what about generating
typewriter passwords
"pronounceable" passwords
what about generating
typewriter passwords
"pronounceable" passwords
#6
Posted 18 May 2010 - 07:06 AM
I don't even know what they are.
#7
Posted 18 May 2010 - 07:45 AM
Pronounceable passwords would be like real words, ex: "hamburger". Only way to do those with a very very large dictionary.
And typewriter passwords is a random password which is easy to remember.
You divide your keyboard in two parts, the left and the right one. If the password starts with a char from the left side, the all the chars which goes in the odd position (1st, 3rd, 5th, 7th, 9th, ... ) are from the left side, while all the chars which goes in the even position (2nd, 4th, 6th, 8th, 10th, ...) are chars from the right side of the keyboard. And viceversa.
Ex: qL4nS_! (or something like this). It's easy to make, really.
Let's say you have a code for making a random password, all you have to do is IF the first char is one from the left side, then all odds position are filled with chars from the left side and even from the right side. Quite simple.
And typewriter passwords is a random password which is easy to remember.
You divide your keyboard in two parts, the left and the right one. If the password starts with a char from the left side, the all the chars which goes in the odd position (1st, 3rd, 5th, 7th, 9th, ... ) are from the left side, while all the chars which goes in the even position (2nd, 4th, 6th, 8th, 10th, ...) are chars from the right side of the keyboard. And viceversa.
Ex: qL4nS_! (or something like this). It's easy to make, really.
Let's say you have a code for making a random password, all you have to do is IF the first char is one from the left side, then all odds position are filled with chars from the left side and even from the right side. Quite simple.
// d-_-b+
#8
Posted 25 May 2010 - 04:43 PM
Thanks for the reply,
Which characters represent left and the ones that are right characters
thanks
Which characters represent left and the ones that are right characters
thanks


Sign In
Create Account


Back to top









