1. 引言
本文介绍如何使用 Python 进行 TP 助记词和私钥的碰撞实验。
2. 碰撞器的原理
助记词是一串单词,符合 BIP39 标准,可生成种子并推导出私钥。碰撞的目标是在给定的规则下随机生成助记词,并检查其对应的私钥是否符合某些条件(如特定地址前缀)。
3. Python 代码实现
import os
import hashlib
from mnemonic import Mnemonic
from bip32utils import BIP32Key
from binascii import hexlify
# 生成助记词
def generate_mnemonic():
mnemo = Mnemonic("english")
return mnemo.generate(strength=128)
# 通过助记词生成私钥和地址
def mnemonic_to_private_key(mnemonic):
seed = Mnemonic.to_seed(mnemonic)
root_key = BIP32Key.fromEntropy(seed)
private_key = root_key.ChildKey(0).ChildKey(0).ChildKey(0).ChildKey(0).ChildKey(0).WalletImportFormat()
address = root_key.ChildKey(0).ChildKey(0).ChildKey(0).ChildKey(0).ChildKey(0).Address()
return private_key, address
# 运行碰撞器
def run_collision_finder(target_prefix, max_attempts=100000):
for _ in range(max_attempts):
mnemonic = generate_mnemonic()
private_key, address = mnemonic_to_private_key(mnemonic)
if address.startswith(target_prefix):
print(f"匹配成功!\n助记词: {mnemonic}\n私钥: {private_key}\n地址: {address}")
break
if __name__ == "__main__":
target = "0x123" # 目标地址前缀
run_collision_finder(target)
运行视频
TP钱包助记词碰撞器