Re: Blowfish digest , how to create in Livecode

2017-03-28 Thread Bob Sneidar via use-livecode
NVM I know, it's "put it" Bob S > On Mar 28, 2017, at 19:27 , Bob Sneidar wrote: > > This in message box: > put "this is a test" into pPayload;encrypt pPayload using "bf" with password > "testing" at 128 bit;put pPayload > produces: > this is a test > > No Bueno. > > Bob S > > >> On Mar

Re: Blowfish digest , how to create in Livecode

2017-03-28 Thread Bob Sneidar via use-livecode
This in message box: put "this is a test" into pPayload;encrypt pPayload using "bf" with password "testing" at 128 bit;put pPayload produces: this is a test No Bueno. Bob S > On Mar 28, 2017, at 08:21 , Dave Kilroy via use-livecode > wrote: > > encrypt pPayload using "bf" with password tPa

Re: Blowfish digest , how to create in Livecode

2017-03-28 Thread Dave Kilroy via use-livecode
Mathias I use blowfish from within LiveCode … but no blowfishdigest that I know of: encrypt pPayload using "bf" with password tPassword at 128 bit put it into tPayload Dave ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit t

Re: Blowfish digest , how to create in Livecode

2017-03-28 Thread J. Landman Gay via use-livecode
I thought the encrypt /decrypt commands supported blowfish. (Not at my Mac to check.) -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.hyperactivesw.com On March 28, 2017 9:33:31 AM Matthias Rebbe via use-livecode wrote: Hi

Re: Blowfish digest , how to create in Livecode

2017-03-28 Thread Matthias Rebbe via use-livecode
Hi Peter, > Am 28.03.2017 um 14:58 schrieb Peter TB Brett via use-livecode > mailto:use-livecode@lists.runrev.com>>: > > > > Hi Matthias, > > Quick note that you may be affected by this PHP security vulnerability: > > http://www.php.net/security/crypt_blowfish.php >

Re: Blowfish digest , how to create in Livecode

2017-03-28 Thread Peter TB Brett via use-livecode
On 28/03/2017 00:29, Matthias Rebbe via use-livecode wrote: Hi, i have a MySQL DB which uses passwords created with php crypt function using blowfish the php code looks like this for example $salt='$2a$08$NWy7XidPPL2XEsouCG3dy’; $digest= crypt(‘myPassword01’,$salt); how can i do this in Li

Blowfish digest , how to create in Livecode

2017-03-27 Thread Matthias Rebbe via use-livecode
Hi, i have a MySQL DB which uses passwords created with php crypt function using blowfish the php code looks like this for example $salt='$2a$08$NWy7XidPPL2XEsouCG3dy’; $digest= crypt(‘myPassword01’,$salt); how can i do this in Livecode server? I find SHA1digest and MD5digest functions in th