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/

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

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

random password generator

2005-07-26 Thread Michael Hohnecker
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. Thanks, Mike ~| Logware (www.logware.us): a new and convenient web-based

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
lk Subject: Random Password Hi guys, I'm trying to work out how to come up with a random password of 8 alpha-numeric characters.  I have done it before but a hell of a long time ago and have checked all my old code but can't find it. Would I have to create an array? It won't be th

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
48 PM, you wrote: SK> Hi guys, SK> I'm trying to work out how to come up with a random password of 8 SK> alpha-numeric characters.  I have done it before but a hell of a long SK> time ago and have checked all my old code but can't find it. SK> Would I have to create

Random Password

2004-02-01 Thread Stuart Kidd
Hi guys, I'm trying to work out how to come up with a random password of 8 alpha-numeric characters.  I have done it before but a hell of a long time ago and have checked all my old code but can't find it. Would I have to create an array? It won't be their permanent passwo

SQL Random password..

2003-07-17 Thread Robertson-Ravo, Neil (RX)
oops, wrong subject line... Hi, I posted this to another list with little success : does anyone know of a sql script which generates a random password for use in an sp? this is to work on SQL 7 so UDF are not an option

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
adouin [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 random passwords? > > CB > ~~~

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 Passwo

RE: Random Password

2001-05-03 Thread Chris Martin
0,)#"; PASSWORD: #password# it will generate a password with 7 random letter and a 4 digit number. -Original Message----- From: Chris Badouin [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 03, 2001 12:24 PM To: CF-Talk Subject: Random Password

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 Subje

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 scrip

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 gener

Random Password

2001-05-03 Thread Chris Badouin
All- Sorry I am pressed for time today, but does any one have script for generating random passwords? CB ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.m

RE: Code snippet - random password generator

2001-03-29 Thread Jay Jennings
> Why define the alphabet? Just use decimal values for the asci char set. So, just because I'm bored, in the unrolled loop I created I change the alphabet to Raymond's chr: The speed increase was fairly slight: Original code (executed 1000 times): 9994 ms (average) Unrolled code (executed 1

RE: Code snippet - random password generator

2001-03-29 Thread Raymond B.
: CF-Talk Subject: Code snippet - random password generator This script generates a random word 7 letters long plus 4 digits long. Example code: PASSWORD: #password# ~~ Structure your ColdFusion code with Fusebox. Get the

RE: Code snippet - random password generator

2001-03-29 Thread Jay Jennings
> This script generates a random word 7 letters long plus 4 digits long. Just for the fun of it I unrolled the loop to see what the speed difference would be. Original code (executed 1000 times): 9994 ms (average) Unrolled code (executed 1000 times): 1993 ms (average) Here's what the unrolled c

Code snippet - random password generator

2001-03-29 Thread kermit
This script generates a random word 7 letters long plus 4 digits long. Example code: PASSWORD: #password# ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm