java中雙hash減少使用者名稱衝突樣本

來源:互聯網
上載者:User


遊戲中要去校正使用者名稱是否重複,redis中放中文的key貌似蠻怪的吧,還是hash後放數字吧,從而校正是否衝突;

hash衝突 例如“Af”和“BG”雜湊值相同,則有“AfAf”,“AfBG”,“BGAf”,“BGBG”的雜湊值也相同

具體關於java的Hash衝突攻擊 可以參考此文章:http://keary.cn/?p=845

不廢話了,實際雙hash用途很多,還有就是java中的內建hash會出現負數比如 (-8%3) 就為-2 依賴模數後的值就會出問題;

上代碼:
 
package com.leeyz.idea.test;
 
public class TestHash {
  public static void main(String[] args) {
    String str = "中文";
    System.out.println(str.hashCode());
    System.out.println("s".hashCode());
    System.out.println("S".hashCode());
    System.out.println("cat".hashCode());
    System.out.println("Af".hashCode());
    System.out.println("BG".hashCode());
 
    System.out.println(FNVHash1Uint("Af"));
    System.out.println(FNVHash1Uint("BG"));
    System.out.println(mixHashULong("Af"));
    System.out.println(mixHashULong("BG"));
 
    System.out.println(-8%3);
  }
 
  public static long mixHashULong(String str) {
    long hash = (str.hashCode() & 0x7fffffff) * 1L;
    hash <<= 32;
    hash |= FNVHash1Uint(str);
    return hash;
  }
 
  public static int FNVHash1Uint(String str) {
    byte[] data = str.getBytes();
    final int p = 16777619;
    int hash = (int) 2166136261L;
    for (byte b : data)
      hash = (hash ^ b) * p;
    hash += hash << 13;
    hash ^= hash >> 7;
    hash += hash << 3;
    hash ^= hash >> 17;
    hash += hash << 5;
    return (hash & 0x7fffffff);
  }
}

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.