Jump to content

Generating Different types passwords

- - - - -

This topic has been archived. This means that you cannot reply to this topic.
7 replies to this topic

#1
avosoft

avosoft

    Learning Programmer

  • Members
  • PipPipPip
  • 47 posts
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.
Programming is all about good logic. Spend more time here

vHost for Apache:thumbup1:

#2
WingedPanther

WingedPanther

    A spammer's worst nightmare

  • Moderators
  • 16,831 posts
Can you clarify what you mean?
Programming is a branch of mathematics.
My CodeCall Blog | My Personal Blog

#3
avosoft

avosoft

    Learning Programmer

  • Members
  • PipPipPip
  • 47 posts
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
Programming is all about good logic. Spend more time here

vHost for Apache:thumbup1:

#4
WingedPanther

WingedPanther

    A spammer's worst nightmare

  • Moderators
  • 16,831 posts
Leet password probably just does things like replace "A" with "4", etc.
Programming is a branch of mathematics.
My CodeCall Blog | My Personal Blog

#5
avosoft

avosoft

    Learning Programmer

  • Members
  • PipPipPip
  • 47 posts
Thanks i later found on that website how to generate leet password
what about generating

typewriter passwords
"pronounceable" passwords
Programming is all about good logic. Spend more time here

vHost for Apache:thumbup1:

#6
WingedPanther

WingedPanther

    A spammer's worst nightmare

  • Moderators
  • 16,831 posts
I don't even know what they are.
Programming is a branch of mathematics.
My CodeCall Blog | My Personal Blog

#7
ksemeks

ksemeks

    Learning Programmer

  • Members
  • PipPipPip
  • 57 posts
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.
// d-_-b+

#8
avosoft

avosoft

    Learning Programmer

  • Members
  • PipPipPip
  • 47 posts
Thanks for the reply,
Which characters represent left and the ones that are right characters

thanks
Programming is all about good logic. Spend more time here

vHost for Apache:thumbup1: