Найти - Пользователи
Полная версия: sha256
Начало » Python для новичков » sha256
1
siamagic
https://emn178.github.io/online-tools/sha256.html

тут есть возможность ввести данные как hex - как в питоне это реализовать?

т.е. хэш от 123 должен быть b71de80778f2783383f5d5a3028af84eab2f18a4eb38968172ca41724dd4b3f4
py.user.next
siamagic
т.е. хэш от 123 должен быть b71de80
  
>>> import hashlib
>>> 
>>> hashlib.sha256(b'\x01\x23').hexdigest()
'b71de80778f2783383f5d5a3028af84eab2f18a4eb38968172ca41724dd4b3f4'
>>> 
>>> hashlib.sha256(bytes((0x01, 0x23))).hexdigest()
'b71de80778f2783383f5d5a3028af84eab2f18a4eb38968172ca41724dd4b3f4'
>>>
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Powered by DjangoBB