Possibility to change encryption mode to AES-256
Opened this issue · 1 comments
NANOliving commented
Hi There!
Is it possible to change encryption cipher_algo ?
Thanks!
quevlu commented
@NANOliving Yes. There is a config file inside this package. You can copy and paste in your config folder and replace the algorithm.
There is an example:
<?php
return [
'enable_encryption' => true,
'encrypt_method' => 'AES-256-CBC',
'encrypt_key' => env('APP_KEY'),
];