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