RE: random password generator

2005-07-31 Thread Jim Davis
> -Original Message- > From: Massimo, Tiziana e Federica [mailto:[EMAIL PROTECTED] > Sent: Sunday, July 31, 2005 8:34 AM > To: CF-Talk > Subject: Re: random password generator > > > Does anyone suggest a good random password generator for CFMX7? > > > >

Re: random password generator

2005-07-31 Thread Massimo, Tiziana e Federica
> Does anyone suggest a good random password generator for CFMX7? > > Many of the ones on the macromedia exchange are for much older versions of ColdFusion. Old pass generators should be just fine. For what's worth, I have one available as CFC: http://www.massimocorner.com/coldfusion/cfc/tmt_pass_

RE: random password generator

2005-07-27 Thread Ewok
http://tutorial176.easycfm.com/ -Original Message- From: Claude Schneegans [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 27, 2005 9:57 AM To: CF-Talk Subject: Re: random password generator >>Many of the ones on the macromedia exchange are for much older versions of ColdFusio

Re: random password generator

2005-07-27 Thread Claude Schneegans
>>Many of the ones on the macromedia exchange are for much older versions of ColdFusion. Is it eally a reason they are not good anymore?. -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send any spam t

Re: random password generator

2005-07-26 Thread Matt Robertson
Here's an easy one for you. Top part is the tag call and the bottom part is the tag itself. Makes up a password and strips out commonly goofed letters ('S' vs '5' etc.). 18 lines of code. Variable pwd length. Have at it. #variables.myPwd#

Re: random password generator

2005-07-26 Thread Bryan Stevenson
> Umm... how much would this have changed from one version to the next? > You want to generate a random string of ~5-8 letters and numbers > right? What new features do you want it to use exactly? XML? CFC's? > Asynchronous CFML gateway? Now now Isaac...be nice ;-) Bryan Stevenson B.Comm. VP & Di

Re: random password generator

2005-07-26 Thread S . Isaac Dealey
> Does anyone suggest a good random password generator for > CFMX7? > Many of the ones on the macromedia exchange are for much > older versions of ColdFusion. Umm... how much would this have changed from one version to the next? You want to generate a random string of ~5-8 letters and numbers rig

Re: random password generator

2005-07-26 Thread Bryan Stevenson
CF version shouldn't matter...it's just a random string generation ;-) Bryan Stevenson B.Comm. VP & Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax: 250.480.1264 cell: 250.920.8830 e-mail: [EMAIL PROTECTED] web: www.electricedgesystems.com

Re: Random Password

2004-02-01 Thread Critter
Cheers, SK> Stuart SK> -Original Message- SK> From: Critter [mailto:[EMAIL PROTECTED] SK> Sent: 01 February 2004 18:37 SK> To: CF-Talk SK> Subject: Re: Random Password SK> oi Stuart!! SK> have a gander at www.cflib.org there are a few results for a "password

RE: Random Password

2004-02-01 Thread Michael T. Tangorre
Stuart... Check out some of the UDFs at cflib.org. This is one of them http://www.cflib.org/udf.cfm?ID=258 Search on "Password" and you will see some others. Mike   _   From: Stuart Kidd [mailto:[EMAIL PROTECTED] Sent: Sunday, February 01, 2004 12:45 PM To: CF-Talk Subject: Ra

RE: Random Password

2004-02-01 Thread Stuart Kidd
[mailto:[EMAIL PROTECTED] Sent: 01 February 2004 18:37 To: CF-Talk Subject: Re: Random Password oi Stuart!! have a gander at www.cflib.org there are a few results for a "password" search /crit -- =-=-=-=-=-=-=-=-=-=-=-=-=-[ Help me fight to keep my son

Re: Random Password

2004-02-01 Thread Critter
oi Stuart!! have a gander at www.cflib.org there are a few results for a "password" search /crit -- =-=-=-=-=-=-=-=-=-=-=-=-=-[ Help me fight to keep my son in the US ]-= =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-[ http://keepmysoninthe.us ]-= Sunday, February 1, 2004, 12:44:48 PM, you wrot

RE: Random Password

2001-05-03 Thread Peter Stolz
utes.CharStart),Asc(Attributes.CharEnd))); } SetVariable("Caller.#Attributes.OutputVar#",result); P. -Original Message- From: Chris Martin [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 03, 2001 5:38 PM To: CF-Talk Subject: RE: Random Password Here's one I got off thi

RE: Random Password

2001-05-03 Thread Tony Schreiber
I've used something like that too, wanting to keep it a consistent number of digits (and you should seed the random with something prior): > Here's one I use to create a random numeric password... > > > hth > > -Original Message- > From: Chris Badouin [mailto:[EMAIL PROTECTED]] > Se

Re: Random Password

2001-05-03 Thread Pablo Varando
: Thursday, May 03, 2001 3:08 PM Subject: RE: Random Password > Here's one I use to create a random numeric password... > > > hth > > -Original Message- > From: Chris Badouin [mailto:[EMAIL PROTECTED]] > Sent: Thursday, May 03, 2001 11:24 AM > To: CF-Talk

RE: Random Password

2001-05-03 Thread Peter Tilbrook
password = "" ; for (c=1; c le 7; c=c+1) {password = password & chr(randRange(65,90)) ; } password = password & randRange(1000,) ; -Original Message- From: Chris Badouin [mailto:[EMAIL PROTECTED]] Sent: Friday, 4 May 2001 02:24 To: CF-Talk Subject: Random Password All- Sorry I am

RE: Random Password

2001-05-03 Thread Chris Martin
Here's one I got off this list a while ago. Props to whoever wrote it, because its helped me out a few times. random_word = Mid("ABCDEFGHIJKLMNOPQRSTUVWXYZ", RandRange(1,26), 1); random_word = random_word & Mid("ABCDEFGHIJKLMNOPQRSTUVWXYZ", RandRange(1,26), 1); random_wo

RE: Random Password

2001-05-03 Thread Bill Simpson
This should work: This will generate a random 8 character password if you need a different length then just change 'to' in the cfloop tag. -Original Message- From: Chris Badouin [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 03, 2001 9:24 AM To: CF-Talk Subject: Random Pass

RE: Random Password

2001-05-03 Thread Robert Long
Here's one I use to create a random numeric password... hth -Original Message- From: Chris Badouin [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 03, 2001 11:24 AM To: CF-Talk Subject: Random Password All- Sorry I am pressed for time today, but does any one have script for generating

RE: Random Password

2001-05-03 Thread Dylan Bromby
there are some tags in allaire's tag gallery that do that. -Original Message- From: Chris Badouin [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 03, 2001 9:24 AM To: CF-Talk Subject: Random Password All- Sorry I am pressed for time today, but does any one have script for generating ran