Previously, Laravel uses MCRYPT_RIJNDAEL_128
cipher for encryption (in <5.0). Now it's AES-256-CBC
(>=5.1). Mcrypt seems to be abandonware and we should not use it.
I have an app written for Laravel <5.1 and migrated to Laravel 5.1. Can I change the cipher, or will it break everything?
EDIT:
In other words, can I switch from MCRYPT_RIJNDAEL_128
to AES-256-CBC
in a Laravel production application with a populated database, connected users, etc. without service interruption/degradation or bug?