In our application we generate hashcode from a java object and store it in the database at some level. Now my questions is if somebody generates a number by hand, is there a way i can find out whether it is a valid hashcode created by the JVM from an Object and not manually created by hand.
|
|
if you want to keep a 'signature' of your object in the database, use a different function. hashCode is not designed to be hard to guess or reverse engineer. since you used hashCode, I assume that you do not care about having the same F(X) = F(Y) where X and Y are different object. if this is indeed the case, consider using an hashing function, maybe plus some "secret" salt. for example:
|
|||
|
|
No, there isn't - at least if it falls in the range of I would say, however, that storing the Java hash codes of objects generally isn't a good idea - it's okay if the hashing algorithm is specified and will never, ever change - but otherwise you're asking for trouble when the algorithm changes and none of your hashes match any more. |
|||
|
|
|
No. The basic hashCode() operation is at liberty to return any int, provided it's consistent. I think the real question is what are you trying to do ? |
|||
|
|