26 lines
662 B
PHP
26 lines
662 B
PHP
<?php return
|
|
[
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Cryto
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Sets the predefined driver for the Crypto library.
|
|
|
|
|
| Options: openssl, mcrypt, hash, phash, mhash
|
|
|
|
|
*/
|
|
|
|
'driver' => 'openssl',
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Encode
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Sets which encryption algorithm will use the Encode class methods by default.
|
|
|
|
|
*/
|
|
|
|
'type' => 'md5'
|
|
]; |