dwCryptPlugin ============= The `dwCryptPlugin` provides abstraction for the mcrypt library. Installation ------------ * *Install the plugin* symfony plugin:install dwCryptPlugin * *Clear you cache* symfony cc Example ------- $crypt = new sfCrypt('ecb', 'tripledes', 'sf$secret); $encrypted = $crypt->encrypt('some_data'); $decrypted = $crypt->decrypt($encrypted);