Decrypt hash string from String.GetHashCode?

前端 未结 4 1839
深忆病人
深忆病人 2021-01-14 22:09

From this sample code from MSDN http://msdn.microsoft.com/en-us/library/system.string.gethashcode.aspx

The hash code for \"abc\" is: 536991770

But how to con

4条回答
  •  北荒
    北荒 (楼主)
    2021-01-14 22:50

    There is no way to "decrypt" the hash code. Amongst other reasons, because two different strings may very well produce the same hash code. That feature alone would make it impossible to reverse the process.

提交回复
热议问题