How do I hash data by hand? Bitwise, strings, integers, any tricks you know of to hash numbers quickly or easily with a paper and pen?
Name:
Anonymous2012-06-09 18:58
Semi related, can you perform operations like AND, OR, XOR, etc on any data in a simpler way than reducing it to bits first like 9 XOR 4 -> 1001 XOR 0100 -> 1101 -> 13