Skip to content

Instantly share code, notes, and snippets.

View vadim-su's full-sized avatar
👨‍🚀
Be more ambitious. The future depends on it.

Vadim Suharnikov vadim-su

👨‍🚀
Be more ambitious. The future depends on it.
View GitHub Profile
import hashlib
from hashlib import sha256
import codecs
def dsha256(data):
return sha256(sha256(data).digest()).digest()
def ripemd(data):