Re: Encrypt non-4D Decrypt 4D

2016-11-28 Thread Paul Dennis
You could use phpass. I do this for joomla passwords. http://www.openwall.com/phpass/ Works with launch external process. Paul -- View this message in context: http://4d.1045681.n5.nabble.com/Encrypt-non-4D-Decrypt-4D-tp5748938p5748946.html Sent from the 4D Tech mailing list archive at

Re: Encrypt non-4D Decrypt 4D

2016-11-27 Thread Sujit Shah
Thanks! On Mon, Nov 28, 2016 at 11:22 AM, Keisuke Miyako wrote: > hashing is not the same as encryption. > > you can only compare the hashes of two strings and make an assumption that > the originals must be the same. > you can't recover (decrypt) the original string from a hash string, > whatev

Re: Encrypt non-4D Decrypt 4D

2016-11-27 Thread Keisuke Miyako
hashing is not the same as encryption. you can only compare the hashes of two strings and make an assumption that the originals must be the same. you can't recover (decrypt) the original string from a hash string, whatever algorithm you use. the PHP "crypt" function doesn't encrypt, you are loo

Encrypt non-4D Decrypt 4D

2016-11-26 Thread Sujit Shah
I am looking for a way to store a value in MySQL encrypted using PHP I then want to decrypt this in 4D Will GENERATE ENCRYPTION KEYPAIR work? The crypt() function returns a hashed string using DES, Blowfish, or MD5 algorithms.