Files
web-site/Projects/Frontend/Config/Cryptography.php
T
2026-07-01 16:44:17 +03:00

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'
];