$this->load->library('encrypt');
$encoded_string = $this->encrypt->encode('my_string_to_secure');
$this->load->library('encrypt');
$original_string_after_decode = $this->encrypt->decode('encoded_string ');
此代码对正确解码给定字符串进行编码和
但是当我将这个encoded_string设置为cookie并且在注销后我尝试解密这个encoded_string时我无法解密这个
我在配置文件中使用加密密钥。
答案 0 :(得分:0)
你需要把你的编码字符串存储在变量$encoded_string
中试试
$original_string_after_decode = $this->encrypt->decode($encoded_string);
更多信息: - http://ellislab.com/codeigniter/user-guide/libraries/encryption.html