【发布时间】:2021-09-26 20:43:58
【问题描述】:
我需要有关 python 中 sha512 编码的帮助。我正在尝试编写一段应该与c#代码一致的python代码。
这是C#中的方法
public string GenerateSHA512Hash(string data, sting salt) {
data = data.Replace(" ", string.Empty).Replace("\n", string.Empty).Replace("\t", string.Empty).Replace("\r", string.Empty).Trim();
data = data + salt;
byte[] HashedBytes = Encoding.UTF8.GetBytes(data);
using(SHA512Managed hash = new SHA512Managed()) {
for (int j = 0; j < 2; j++) {
HashedBytes = hash.ComputeHash(HashedBytes);
var text = HashedBytes.ToBase16();
}
}
return HashedBytes.ToBase16();
}
我在 python 中得到了以下内容
import hashlib
def HashPAN(pan: str, salt: str):
data: str = pan + salt
data = data.replace(" ", "").replace("\n", "").replace("\t", "").replace("\r", "")
data_bytes = data.encode("utf-8")
hasher = hashlib.sha512()
# First Iteration
hasher.update(data_bytes)
hashed = hasher.digest()
h = hasher.hexdigest().upper()
# Second Iteration
hasher.update(hashed)
hashed = hasher.digest()
h = hasher.hexdigest().upper()
return hashed
在 python 中,标记为#First Iteration 的部分的结果与 C# 代码中循环中第一次的结果相匹配(h = 文本)。
但是,python 中的第二次与 c# 中的第二次不匹配。有人可以帮忙吗
【问题讨论】:
-
您不应该只拥有
hexdigest而不是digest和hexdigest吗? -
@ChatterOne 我正在做十六进制只是为了获取和查看字符串值。