|
|
@@ -17,6 +17,29 @@ namespace Admin.NET.Core;
|
|
|
/// </summary>
|
|
|
public static class CommonUtil
|
|
|
{
|
|
|
+ /// <summary>
|
|
|
+ /// 根据字符串获取固定整型哈希值
|
|
|
+ /// </summary>
|
|
|
+ /// <param name="str"></param>
|
|
|
+ /// <returns></returns>
|
|
|
+ public static int GetFixedHashCode(string str)
|
|
|
+ {
|
|
|
+ if (string.IsNullOrWhiteSpace(str)) return 0;
|
|
|
+ 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 Math.Abs(hash1 + (hash2 * 1566083941));
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
/// <summary>
|
|
|
/// 生成百分数
|
|
|
/// </summary>
|