This is a browser-based clone of the KeyHunt tool for hunting Bitcoin private keys using secp256k1. It supports basic modes like RMD160 and Address search. Note: Due to browser limitations, this is suitable for small ranges only (e.g., up to 40-50 bits). For larger puzzles like #71, use the original C++ tool or GPU versions. Searches run in Web Workers to avoid freezing the UI.
Configuration
Progress
Keys checked: 0 | Speed: 0 keys/s
Output
// Then implement:
// function getAddress(privHex, compressed) {
// const rmd = getRmd160(privHex, compressed);
// const versionedPayload = Buffer.from('00' + rmd, 'hex');
// const checksum = sha256(sha256(versionedPayload)).substr(0,8);
// const fullPayload = versionedPayload + Buffer.from(checksum, 'hex');
// return bs58.encode(fullPayload);
// }
// But for now, it's simplified to match on rmd for both modes.
Leave a Reply