how to converse this algorithm!!!please help me!!!
protected static final int getHash(byte [] data)
{
int off = 0;
int len = data.lenght;
int k = 147;
try{
for(int l = off + len; l > off;)
k = k * 147 ^ data[--l];
return k;
}
catch(Throwable throwable){
return k;
}
}
If I have the result of thie method like as: 0x69a6d9dd, how I converse this algorithm to get the original data.(the passed paramether)
the data's length is no more than 3!!!!