golden hour
/home/phakp/public_html/bkp_full/old_site_bkp/tests/mocks/libraries
⬆️ Go Up
Upload
File/Folder
Size
Actions
driver.php
407 B
Del
OK
encrypt.php
347 B
Del
OK
encryption.php
755 B
Del
OK
session.php
840 B
Del
OK
table.php
343 B
Del
OK
Edit: encryption.php
<?php class Mock_Libraries_Encryption extends CI_Encryption { /** * __get_params() * * Allows public calls to the otherwise protected _get_params(). */ public function __get_params($params) { return $this->_get_params($params); } // -------------------------------------------------------------------- /** * get_key() * * Allows checking for key changes. */ public function get_key() { return $this->_key; } // -------------------------------------------------------------------- /** * __driver_get_handle() * * Allows checking for _mcrypt_get_handle(), _openssl_get_handle() */ public function __driver_get_handle($driver, $cipher, $mode) { return $this->{'_'.$driver.'_get_handle'}($cipher, $mode); } }
Save