Codeigniterのencrypt->decodeで復号化できずに少しはまる… CodeIgniterで暗号・複合をしてみた時にdecodeできないことがありました。 ↓暗号化してるコード $this->load->library('encrypt'); $this->encrypt->set_cipher('MCRYPT_BLOWFISH'); $this->encrypt->encode('plane_text', $CI->config->aff_item('encryption_key')); ↓復号化しているコード $this->load->library('encrypt'); $this->encrypt->set_cipher('MCRYPT_BLOWFISH'); $plaintext_string = $this->encrypt->decode($result_c