>> Security isn't a huge issue You may rue the day you said that....
-----Original Message----- From: Paul Johnston [mailto:[EMAIL PROTECTED]] Sent: 12 February 2003 14:02 To: [EMAIL PROTECTED] Subject: RE: [ cf-dev ] Password creation Password Creator: What I am after with a password creator is to create a password with letters, and numbers that contains words that people can remember alongside a number ie: Moon332 Is an okay password or Biscuit41 Is an okay password. Security isn't a huge issue, so... What I have come up with is to find a list of common english words (ie words that most people would know) of 5 or more letters, and to combine 2 words from the list with a number in this format: <num><word><word> OR <word><num><word> OR <word><word><num> Easy enough! Have created my own now! This way it's harder to crack, BUT easier to remember. Paul > > > Anyone got a password creator custom tag/UDF anywhere? > > Password generator for stupid people: > > <cfscript> > // initialise string > PasswordString = ''; > > // loop through until password is desired length > while (Len(PasswordString) LT 8) { > if (Len(PasswordString) EQ 0) { > NewLetter = Chr(112); > } else if (Len(PasswordString) EQ 1) { > NewLetter = Chr(97); > } else if (Len(PasswordString) EQ 2 OR Len(PasswordString) EQ 3) { > NewLetter = Chr(115); > } else if (Len(PasswordString) EQ 4) { > NewLetter = Chr(119); > } else if (Len(PasswordString) EQ 5) { > NewLetter = Chr(111); > } else if (Len(PasswordString) EQ 6) { > NewLetter = Chr(114); > } else if (Len(PasswordString) EQ 7) { > NewLetter = Chr(100); > } > // add new letter to the string > PasswordString = PasswordString&NewLetter; > } > > // view the string > writeoutput(PasswordString); > </cfscript> > > -- > ** Archive: http://www.mail-archive.com/dev%40lists.cfdeveloper.co.uk/ > > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: > [EMAIL PROTECTED] For human help, e-mail: > [EMAIL PROTECTED] > -- ** Archive: http://www.mail-archive.com/dev%40lists.cfdeveloper.co.uk/ To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] For human help, e-mail: [EMAIL PROTECTED] -- ** Archive: http://www.mail-archive.com/dev%40lists.cfdeveloper.co.uk/ To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] For human help, e-mail: [EMAIL PROTECTED]