mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2024-11-23 19:42:51 +01:00
22 lines
439 B
C#
22 lines
439 B
C#
namespace Phantom.Utils.Cryptography;
|
|
|
|
public static class StableHashCode {
|
|
public static int ForString(string str) {
|
|
unchecked {
|
|
int hash1 = (5381 << 16) + 5381;
|
|
int hash2 = hash1;
|
|
|
|
for (int i = 0; i < str.Length; i += 2) {
|
|
hash1 = ((hash1 << 5) + hash1) ^ str[i];
|
|
if (i == str.Length - 1) {
|
|
break;
|
|
}
|
|
|
|
hash2 = ((hash2 << 5) + hash2) ^ str[i + 1];
|
|
}
|
|
|
|
return hash1 + (hash2 * 1566083941);
|
|
}
|
|
}
|
|
}
|