elgiborsolution/laravel-database-encryption

Possibility to change encryption mode to AES-256

Opened this issue · 1 comments

Hi There!

Is it possible to change encryption cipher_algo ?

Thanks!

@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'),
];