2

我使用 CodeIgniter 的编码方法存储用户名、密码和安全令牌,例如 -

$this->load->library('encrypt');
//...
$password = $this->encrypt->encode($rows["password"]);
//Then save it in password column of user_credentials table.

现在,在 python 中,我想解码这个编码的密码。我一直在尝试用 python 的hashlib对其进行解码,但我做不到。

我认为这是因为 CI 的加密库对密码的作用超过了 md5-

function encode($string, $key = '')
{
    $key = $this->get_key($key);
    if ($this->_mcrypt_exists === TRUE)
    {
        $enc = $this->mcrypt_encode($string, $key);
    }
    else
    {
        $enc = $this->_xor_encode($string, $key);
    }
    return base64_encode($enc);
}

function decode($string, $key = '')
{
    $key = $this->get_key($key);

    if (preg_match('/[^a-zA-Z0-9\/\+=]/', $string))
    {
        return FALSE;
    }

    $dec = base64_decode($string);

    if ($this->_mcrypt_exists === TRUE)
    {
        if (($dec = $this->mcrypt_decode($dec, $key)) === FALSE)
        {
            return FALSE;
        }
    }
    else
    {
        $dec = $this->_xor_decode($dec, $key);
    }

    return $dec;
}

我应该如何解码它?我需要在python中编写上面的解码函数。请帮忙。

4

1 回答 1

1

查看 CI 的 system/libraries/Encrypt.php 并查看 mcrypt_decode 和 _remove_cipher_noise 是如何工作的。mcrypt 库有一个 python 接口可用。很好的狩猎。

于 2013-02-26T06:32:46.810 回答