我正在尝试将密码插入sql server db。密码已经通过加密功能0x29E59C9B1ABD5F2DF024CCAC61FBDDDD
了。列数据类型为binary(16),但是当我执行查询时,它返回
不允许从数据类型varchar隐式转换为二进制。 使用CONVERT函数运行此查询。
尝试使用Convert(binary(16))
,但出现相同的错误。有任何想法吗?所有这些都用PHP
此功能可以加密我的密码
enter code here
function encrypt($str) {
$key = array();
$dst = array();
$i = 0;
$nBytes = strlen($str);
while ($i < $nBytes){
$i++;
$key[$i] = ord(substr($str, $i - 1, 1));
$dst[$i] = $key[$i];
}
$rslt = $key[1] + $key[2]*256 + $key[3]*65536 + $key[4]*16777216;
$one = $rslt * 213119 + 2529077;
$one = $one - intval($one/ 4294967296) * 4294967296;
$rslt = $key[5] + $key[6]*256 + $key[7]*65536 + $key[8]*16777216;
$two = $rslt * 213247 + 2529089;
$two = $two - intval($two/ 4294967296) * 4294967296;
$rslt = $key[9] + $key[10]*256 + $key[11]*65536 + $key[12]*16777216;
$three = $rslt * 213203 + 2529589;
$three = $three - intval($three/ 4294967296) * 4294967296;
$rslt = $key[13] + $key[14]*256 + $key[15]*65536 + $key[16]*16777216;
$four = $rslt * 213821 + 2529997;
$four = $four - intval($four/ 4294967296) * 4294967296;
$key[4] = intval($one/16777216);
$key[3] = intval(($one - $key[4] * 16777216) / 65535);
$key[2] = intval(($one - $key[4] * 16777216 - $key[3] * 65536) / 256);
$key[1] = intval(($one - $key[4] * 16777216 - $key[3] * 65536 - $key[2] * 256));
$key[8] = intval($two/16777216);
$key[7] = intval(($two - $key[8] * 16777216) / 65535);
$key[6] = intval(($two - $key[8] * 16777216 - $key[7] * 65536) / 256);
$key[5] = intval(($two - $key[8] * 16777216 - $key[7] * 65536 - $key[6] * 256));
$key[12] = intval($three/16777216);
$key[11] = intval(($three - $key[12] * 16777216) / 65535);
$key[10] = intval(($three - $key[12] * 16777216 - $key[11] * 65536) / 256);
$key[9] = intval(($three - $key[12] * 16777216 - $key[11] * 65536 - $key[10] * 256));
$key[16] = intval($four/16777216);
$key[15] = intval(($four - $key[16] * 16777216) / 65535);
$key[14] = intval(($four - $key[16] * 16777216 - $key[15] * 65536) / 256);
$key[13] = intval(($four - $key[16] * 16777216 - $key[15] * 65536 - $key[14] * 256));
$dst[1] = $dst[1] ^ $key[1];
$i=1;
while ($i<16){
$i++;
$dst[$i] = $dst[$i] ^ $dst[$i-1] ^ $key[$i];
}
$i=0;
while ($i<16){
$i++;
if ($dst[$i] == 0) {
$dst[$i] = 102;
}
}
$encrypt = "0x";
$i=0;
while ($i<16){
$i++;
if ($dst[$i] < 16) {
$encrypt = $encrypt . "0" . dechex($dst[$i]);
} else {
$encrypt = $encrypt . dechex($dst[$i]);
}
}
return $encrypt; }
这是db(codeigniter)的插入
public function register_user_account($data4) {
$db2= $this->load->database('mssqlsrv',TRUE);
$db2->insert("user_account", $data4);
$db2->close();
}
这就是我如何将数据从表单传递到控制器以便提交
$this->Game_Account_Model->register_user_auth([
"account" => $acc_name,
"password" => encrypt($pass),
"something" => '_',
"something2" => '_',
"something1" => encrypt($pass),
"something" => encrypt($pass)
]
);
答案 0 :(得分:0)
您正在将VARCHAR发送到SQL,其中column设置为二进制,您可以执行以下操作:
将SQL列设置为VARCHAR,它将起作用。
使用base_convert()函数将字符串转换为二进制。参考:http://ca3.php.net/base_convert
将二进制转换为可读的字符串:
您可以使用unpack()-http://php.net/manual/en/function.unpack.php
将字符串转换为二进制
您还可以检查pack()- http://php.net/manual/en/function.pack.php