Re: How to generate user passwords

2011-04-28 Thread Bob Sneidar
I was poking around in google for Random Word Generators. I bet you could talk someone into providing access to their web site, and have it return the results in a form variable. Bob On Apr 28, 2011, at 11:23 AM, Scott Morrow wrote: > Fun! > > On Apr 28, 2011, at 10:02 AM, FlexibleLearning

Re: How to generate user passwords

2011-04-28 Thread Scott Morrow
Fun! On Apr 28, 2011, at 10:02 AM, FlexibleLearning wrote: >> Your function generates very random strings which might be too random for > a user to remember on their own. > > Just a playful idea... > > on mouseUp > put passwordPhrase() > end mouseUp > > function passwordPhrase > return w1()

Re: How to generate user passwords

2011-04-28 Thread FlexibleLearning
> Your function generates very random strings which might be too random for a user to remember on their own. Just a playful idea... on mouseUp put passwordPhrase() end mouseUp function passwordPhrase return w1() && w2() && w3() && w4() && w5() end passwordPhrase function w1 return item ra

Re: How to generate user passwords

2011-04-28 Thread Bob Sneidar
Dunno about you, I can curse without 'em. Bob On Apr 27, 2011, at 5:27 PM, Scott Morrow wrote: > With those characters "(@#$%&*)" I would think you could just curse. > > -Scott > > On Apr 27, 2011, at 4:56 PM, Bill Vlahos wrote: > >> Mark, >> >> Of course they become less speakable if you

Re: How to generate user passwords

2011-04-28 Thread Mark Schonewille
Hi Bill, That's true, but my function doesn't do that. I guess it is usless to you if you need to include special characters. -- Best regards, Mark Schonewille Economy-x-Talk Consulting and Software Engineering Homepage: http://economy-x-talk.com Twitter: http://twitter.com/xtalkprogrammer KvK

Re: How to generate user passwords

2011-04-27 Thread Roger Eller
On Wed, Apr 27, 2011 at 7:27 PM, Scott Morrow wrote: > With those characters "(@#$%&*)" I would think you could just curse. > > -Scott > Hey! How did you guys get my password? ;-) ~Roger ___ use-livecode mailing list use-livecode@lists.runrev.com Plea

Re: How to generate user passwords

2011-04-27 Thread Scott Morrow
With those characters "(@#$%&*)" I would think you could just curse. -Scott On Apr 27, 2011, at 4:56 PM, Bill Vlahos wrote: > Mark, > > Of course they become less speakable if you have to include special > characters (@#$%&*) and include upper and lower case which are often required > complex

Re: How to generate user passwords

2011-04-27 Thread Bill Vlahos
Mark, Of course they become less speakable if you have to include special characters (@#$%&*) and include upper and lower case which are often required complexities of strong passwords. :) Bill Vlahos _ InfoWallet (http://www.infowallet.com) is about keeping your important life

Re: How to generate user passwords

2011-04-27 Thread Mark Schonewille
Bill, The passwords are "speakable", to make them easier to remember. -- Best regards, Mark Schonewille Economy-x-Talk Consulting and Software Engineering Homepage: http://economy-x-talk.com Twitter: http://twitter.com/xtalkprogrammer KvK: 50277553 New: Download the Installer Maker Plugin 1.6

Re: How to generate user passwords

2011-04-27 Thread Bill Vlahos
Also thanks to Bjornke and Chris for your suggestions too. Bill Vlahos _ InfoWallet (http://www.infowallet.com) is about keeping your important life information with you, accessible, and secure. On Apr 27, 2011, at 4:35 PM, Bill Vlahos wrote: > Mark, > > Nice. Thank you. > > I

Re: How to generate user passwords

2011-04-27 Thread Bill Vlahos
Mark, Nice. Thank you. I want to add a feature to InfoWallet to generate passwords for a user so the user doesn't have to think them up. InfoWallet can manage the passwords and can automate login in to a web page or application using the Login Assistant feature with as little as 2 clicks. Your

Re: How to generate user passwords

2011-04-27 Thread dunbarx
l Message- From: Mark Schonewille To: How to use LiveCode Sent: Wed, Apr 27, 2011 3:45 pm Subject: Re: How to generate user passwords Bill, I made this as part of another discussion about speakable passwords. function speakablePassword theLength put "bcdfghjklmnprstwyz" into

Re: How to generate user passwords

2011-04-27 Thread Dave Cragg
Mark's method has the additional advantage that it can be used to generate names for your next science fiction novel. Best wishes Kgime Bogbu (Commander 4th Class, Warmifa Federation) ___ use-livecode mailing list use-livecode@lists.runrev.com Please vi

Re: How to generate user passwords

2011-04-27 Thread Mark Schonewille
Bill, I made this as part of another discussion about speakable passwords. function speakablePassword theLength put "bcdfghjklmnprstwyz" into myConsonants put "aeiou" into myVowels put "" into myPass repeat myPasswordLength if char -1 of myPass is in myConsonants the

Re: How to generate user passwords

2011-04-27 Thread Nonsanity
put base64encode( random( 1 ) ) into msg :) ~ Chris Innanen ~ Nonsanity 2011/4/27 Björnke von Gierke > repeat for random(2) + random(2) + 4 times > put any char of > "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890+*%&/)=?-_.:,;" > & quote & space after thePassword >

Re: How to generate user passwords

2011-04-27 Thread Björnke von Gierke
repeat for random(2) + random(2) + 4 times put any char of "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890+*%&/)=?-_.:,;" & quote & space after thePassword end repeat put thePassword On 27 Apr 2011, at 11:45, Bill Vlahos wrote: > Before I reinvent the wheel, has anyone written a