我正在尝试将PHP
代码段转换为Python3
代码,但是print
和echo
的输出是不同的。
您可以在步骤1中看到它。
您知道问题出在哪里吗?我也附加了输入数组,但我认为它们是相等的。
�W2+ vs ee7523b2
编辑
当我从TRUE切换到FALSE时,第一步的输出是相同的。 $d = strrev(hash("crc32b", $d, FALSE)) . $d
但是问题是我必须将PHP转换为Python,而不是相反,因为那样,那么我就会进入步骤2,我需要具有相等的输出。
PHP输出(CMD)
0 -> 1 1 100 EUR 20190101 11111111 Faktúra 1 SK6807200002891987426353 0 0
1 -> �W2+ 1 1 100 EUR 20190101 11111111 Faktúra 1 SK6807200002891987426353 0 0
2 -> 00004e00007715c242b04d5014490af1445dd61c1527ddc5f4461ca5886caf63fd8fbcf7df69c2035760ecb28d8171efdb409c0206996498ea7921e715172e60c210f923f070079ffba40000
PYTHON输出
-------
0 -> 1 1 100 EUR 20190101 11111111 Faktúra 1 SK6807200002891987426353 0 0
1 -> ee7523b2 1 1 100 EUR 20190101 11111111 Faktúra 1 SK6807200002891987426353 0 0
2 -> b'00006227515c7830302762275c783030325c7865305c7864386a34585c7862346d5c7838665c7865625c7863315c786266625c7839625c786339675c786332785c7831645c7862392c415c7862625c7831645c78663770365c786463735c786236572d606c225c7865355c7865635c7831345c7863655c786331205c7830635c7831315c7861375c7839345c7864665c7865635c7830365c7831652c22265c7866355c7862335c7866345c78616145585c7861625c7866395c7839615c7839645c7865645c7864625c7830305c7864355c7861643b5c7865365f5c7866645c786533405c78303027'
PHP
<?php
$suma = "100";
$datum = "20190101";
$varsym = "11111111";
$konsym = "";
$specsym = "";
$poznamka = "Faktúra";
$iban = "SK6807200002891987426353";
$swift = "";
$d = implode("\t", array(
0 => '',
1 => '1',
2 => implode("\t", array(
true,
$suma, // SUMA
'EUR', // JEDNOTKA
$datum, // DATUM
$varsym, // VARIABILNY SYMBOL
$konsym, // KONSTANTNY SYMBOL
$specsym, // SPECIFICKY SYMBOL
'',
$poznamka, // POZNAMKA
'1',
$iban, // IBAN
$swift, // SWIFT
'0',
'0'
))
));
// 0
echo "0 -> ".$d."\n";
$d = strrev(hash("crc32b", $d, TRUE)) . $d;
// 1
echo "1 -> ".$d."\n";
$x = proc_open("/usr/bin/xz '--format=raw' '--lzma1=lc=3,lp=0,pb=2,dict=128KiB' '-c' '-'", [0 => ["pipe", "r"], 1 => ["pipe", "w"]], $p);
fwrite($p[0], $d);
fclose($p[0]);
$o = stream_get_contents($p[1]);
fclose($p[1]);
proc_close($x);
$d = bin2hex("\x00\x00" . pack("v", strlen($d)) . $o);
// 2
echo "2 -> ".$d."\n";
?>
PYTHON
def crc32b(x):
h = zlib.crc32(x)
x='%08X' % (h & 0xffffffff,)
return x.lower()
t = "\t"
gen = t.join(["1",
"100", # SAME VARIABLES
"EUR",
"20190101",
"11111111",
"",
"",
"",
"Faktúra",
"1",
"SK6807200002891987426353",
"",
"0",
"0"]
)
d = t.join([
"", "1", gen])
# 0
print(f"0 -> {d}")
hashD = crc32b(d.encode()) # OK
hashD = hashD[::-1]
# hashD = str(binascii.unhexlify(hashD))
d = hashD + d
# 1
print(f"1 -> {d}")
args = shlex.split("xz '--format=raw' '--lzma1=lc=3,lp=0,pb=2,dict=128KiB' -c -")
process = subprocess.Popen(args, shell=False, stdin=subprocess.PIPE, stdout=subprocess.PIPE,
stderr=subprocess.PIPE)
output = process.communicate(d.encode())
pack = "\x00\x00" + str(struct.pack("H", len(d))) + str(output[0])
d = binascii.hexlify(pack.encode())
# 2
print(f"2 -> {d}")
答案 0 :(得分:1)
不适用于 PHP 。
根据[Python 3]: zlib.crc32(data[, value])(强调是我的):
计算数据的CRC(循环冗余校验)校验和。结果是无符号32位整数。
您正在混淆:
>>> crc = 0x2B3257EE # The value returned by zlib.crc32 for your text >>> type(crc), crc (<class 'int'>, 724719598) >>> >>> [chr((crc >> shift_bits) & 0xFF) for shift_bits in [0, 8, 16, 24]] ['î', 'W', '2', '+']
注释:
'î'
)看起来有所不同,但这只是一个表示问题(在我的控制台 vs 中)您的)将其集成到代码中,您需要修改 crc32b 函数(并删除对 hashD 的任何进一步处理),以:
def crc32b(x):
crc = zlib.crc32(x)
return "".join([chr((crc >> shift_bits) & 0xFF) for shift_bits in [0, 8, 16, 24]])
有关此常规主题的更多详细信息,请检查[SO]: Python struct.pack() behavior (@CristiFati's answer)。
@ EDIT0 :
添加从 hex 表示形式开始的版本:
>>> crc = 0x2B3257EE >>> crc_hex = "{:08X}".format(crc) >>> crc_hex '2B3257EE' >>> >>> list(reversed([chr(int(crc_hex[2 * i] + crc_hex[2 * i + 1], 16)) for i in range(len(crc_hex) // 2)])) ['î', 'W', '2', '+']
答案 1 :(得分:0)
您只需要删除函数hash()
的第3个参数
如果将此参数设置为true,则hash将返回原始二进制数据,而php则尝试将其解析为文本字符串,而您期望的是十六进制结果