Alright guys, I want to unhash some names. But I need code to unhash it, I'm NOT begging you for giving me that code, I just want to know if it is possible to unhash this. I would have no idea how, so that's also why I'm asking you
Would it be possible to reverse the name.charAt(j) code? Because that's the hardest part.
public int getHash(String name) { int hash = 0; name = name.toUpperCase(); for (int j = 0; j < name.length(); j++) hash = (hash * 61 + name.charAt(j)) - 32; return hash; }
Thanks, Endian.