티스토리 뷰
BIP39 니모닉 단어 목록
https://github.com/bitcoin/bips/blob/master/bip-0039/bip-0039-wordlists.md
파이썬 코드
from bitcoin import sha256
import requests
# fetch 2048 words
res = requests.get("https://raw.githubusercontent.com/bitcoin/bips/master/bip-0039/english.txt")
arr = res.text.strip().split('\n')
# 11 words selected
words_11 = 'garden vacant thumb guard live note whisper fringe snack absent certain'
# 11 words to 121 bits
list = words_11.split(' ')
bits121 = ''
for i in range(len(list)) :
num = arr.index(list[i])
bits121 += bin(num)[2:].zfill(11)
for i in range(128) : # 2^7 = 128
# 3bit for padding
padding = bin(i)[2:].zfill(7)
# 128 bit entropy
hexStr = hex(int(bits121 + padding, 2))[2:].zfill(32)
# sha256 of entropy
entropy_hash = sha256(bytes.fromhex(hexStr))
# first checksum 4bit of hash
checksumHex = entropy_hash[:1]
checksumDec = int(checksumHex, 16)
checksumBin = bin(checksumDec)[2:].zfill(4)
# index of 12 word
index = int(padding + checksumBin, 2)
# last word
print(arr[index])
블로그내 관련 글
728x90
반응형
'비트코인 전도' 카테고리의 다른 글
키스톤3 프로 사용방법 (0) | 2024.11.10 |
---|---|
거래소 비트코인 출금, 비트코인 보관 및 관리 등.. (25) | 2023.11.24 |
키스톤 비밀번호와 니모닉, 그리고 패스프레이즈의 관계 (2) | 2023.11.17 |
비트코인은 온라인으로 전송이 가능한 최초의 무기명자산 (2) | 2023.08.22 |
한국인들이라면 특히 더욱 비트코인에 관심을 가져야 합니다. (1) | 2023.06.14 |
댓글