如何在for循环中哈希整数

时间:2018-07-03 07:17:57

标签: for-loop hash integer sha256

我想散列一个整数范围。我们知道如何在sha256中定义参数,因为它只需要字符串和缓冲区?

c=list()
import hashlib
   for i in range(0,10):
   d=hashlib.sha256(i).hexdigest()
   c.append(d)
   print(c)

0 个答案:

没有答案