I'm not English speaker, sorry in advance.
I have a ColdFusion 6.1 application, and now I'm trying to migrate to another environment. In the ColdFusion application, the passwords of my users are crypted with a ColdFusion function:
password_encrypted=toBase64(encrypt(text,key));
Does anyone know how can I decrypt it in PHP? I don't know what the cypher algorithm used in CFMX 6.1 is. I think that the name of the algorithm is CFMX_COMPAT
, but I don't know if it has an equivalent in PHP.
Thanks!!!