Created
May 21, 2021 18:42
-
-
Save neonphog/73239f60b930887274d9f9df9b46f4eb to your computer and use it in GitHub Desktop.
holo-hash-prefix-finder.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env node | |
const varint = require('varint') | |
for (let i = 0x00; i <= 0xff; ++i) { | |
for (let j = 0x00; j <= 0xff; ++j) { | |
let code | |
try { | |
code = varint.decode([i, j]) | |
} catch (e) { | |
continue | |
} | |
if (code < 256 || varint.decode(varint.encode(code)) !== code) { | |
continue | |
} | |
const full = Buffer.from([i, j, 0x24]).toString('base64') | |
/* | |
if (full[0] !== 'h' && full[0] !== 'H') { | |
continue | |
} | |
*/ | |
console.log(full, varint.decode([i, j]), Buffer.from([i, j, 0x24])) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment