▲ | Show HN: I made a C program to create a vanity SHA-1 hash for a text file(gist.github.com) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
58 points by keepamovin 6 days ago | 24 comments | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
▲ | keepamovin 6 days ago | parent | next [-] | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
After experimenting with cycling punctuation, and random capitalization I hit on the idea to use each word as a bit and map the original version of the word to 0 and the title-case-toggled version of the word to 1. Then just use the text file as a "counter nonce" and count from 0 until we find a counter that hashes to the vanity prefix we want. The advantage of this is flipping the capitalization of the first letter of each word doesn't drastically alter the visual appearance of the file (tho it may alter semantics!), and you get an easy to understand amount of entropy (number of states) to walk through. The C version linked only supports counting up to ~4 billion but it could be easily extended. A JS version using BigInt can go unlimited. For reference the included example text took a surprising 2 billion iterations to discover the correct 8 digit hash which is about what you'd expect from random (i.e., half the state space of 16*8 = (2*4)*8) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
▲ | kazinator 3 days ago | parent | prev | next [-] | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Don't bother applying here if your github doesn't look like this:
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
▲ | coolThingsFirst 3 days ago | parent | prev | next [-] | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Interesting, also this quote is as interesting as the code: "Your job, throughout your entire life, is to disappoint as many people as it takes to avoid disappointing yourself." | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
▲ | susam 4 days ago | parent | prev | next [-] | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
The SHA-256 hash of this sentence begins with 0573e7473. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
▲ | saulpw 3 days ago | parent | prev [-] | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Cool! I made a multithreaded version about 10 years that works for binary files like .zip files: https://github.com/century-arcade/src/tree/master/tools/vain... | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|