Is there a way in PHP 5.3 to get crypt() blowfish (salt starting with $2a$) results identical to those generated by PHP 5.2? In 5.3, Zend implements all encryption algorithms internally, thus producing different results. Also, in 5.3, blowfish needs a cost parameter.
Basically, is there a way to call whatever system mechanisms were used for encryption in PHP 5.2 using a command line program?
Note: The server is on Linux, must be distro portable.