Python 256bit Hash function with number output

前端 未结 2 1557
南方客
南方客 2021-02-05 15:20

I need a Hash function with a 256bit output (as long int).

First I thought I could use SHA256 from the hashlib but it has an String Output and I need a number to calcula

2条回答
  •  走了就别回头了
    2021-02-05 16:03

    python 3.x update

    import hashlib
    value = 'something to hash'
    t_value = value.encode('utf8')
    h = hashlib.sha256(t_value)
    h.hexdigest()
    n = int(h.hexdigest(),base=16)
    print(n)
    

提交回复
热议问题