我想加密我的 url 参数,例如: http://localhost/myapps/user/profile/john 到 http://localhost/myapps/user/profile/ {'john'的加密值}
在代码点火器中。
另一方面,特定数据的每次刷新加密值都会发生变化。但我需要这个静态(特定输入值的唯一值总是)。
我想加密我的 url 参数,例如: http://localhost/myapps/user/profile/john 到 http://localhost/myapps/user/profile/ {'john'的加密值}
在代码点火器中。
另一方面,特定数据的每次刷新加密值都会发生变化。但我需要这个静态(特定输入值的唯一值总是)。
$this->load->library('encrypt');//load this library.
$config['encryption_key'] = "YOUR KEY"; // application/config/config.php
$this->encrypt->encode();//Data encryption and returns it as a string
$this->encrypt->decode();//Decrypts an encoded string.