i have to implement this hash function
"h(k)=((A*k)*mod(2^32))rsh(32-r)".
Where rsh(32-r) is right shifting a number. How can i do this right shifting. I am confused as i don't know how many times it will right shift the number ? Also it is not mentioned in my PDF. And also table size=m=2^r. Therefore r=logm. **It is mandatory to use this hash function.