hash函式
1、hash函式廣泛用於密碼學中,比如銀行客戶的密碼通過函式函式轉換得到一個加密過的新密碼,把這個資訊密碼儲存在資料庫中,每次客戶登入時,都會將密碼經過hash演算法轉換後,再次與資料庫中的密碼進行比較。由於hash演算法是不可逆的,所以可以保證即使得到了資料庫中的密碼,也無法破解得到原先的密碼。
2、hash還可以用來搜尋,即用生成的hash值來表示所儲存內容的儲存器中的位置,這樣可以將搜尋的時間複雜度降低到O(1)。
下面這些內容均為轉載:
所有內容均來自於:http://www.partow.net/programming/hashfunctions/
以下總共給出了10種字串hash函式,在上面的連結中可以找到各個Hash函式的描述,以及一些其它的關於hash函式的資料下載。
這些hash函式各自的優缺點不詳。其中,ELFHash函式是在unix系統中被廣泛使用的,也是《演算法藝術與資訊學競賽》中作者推薦的一個字串hash函式。DEKHash函式是Knuth在其《The Art of Computer Programming》第三卷中引入的。
[cpp] view plain copy
- unsigned int RSHash(char* str, unsigned int len)
- {
- unsigned int b = 378551;
- unsigned int a = 63689;
- unsigned int hash = 0;
- unsigned int i = 0;
- for(i = 0; i < len; str++, i++)
- {
- hash = hash * a + (*str);
- a = a * b;
- }
- return hash;
- }
- /* End Of RS Hash Function */
- unsigned int JSHash(char* str, unsigned int len)
- {
- unsigned int hash = 1315423911;
- unsigned int i = 0;
- for(i = 0; i < len; str++, i++)
- {
- hash ^= ((hash << 5) + (*str) + (hash >> 2));
- }
- return hash;
- }
- /* End Of JS Hash Function */
- unsigned int PJWHash(char* str, unsigned int len)
- {
- const unsigned int BitsInUnsignedInt = (unsigned int)(sizeof(unsigned int) * 8);
- const unsigned int ThreeQuarters = (unsigned int)((BitsInUnsignedInt * 3) / 4);
- const unsigned int OneEighth = (unsigned int)(BitsInUnsignedInt / 8);
- const unsigned int HighBits = (unsigned int)(0xFFFFFFFF) << (BitsInUnsignedInt - OneEighth);
- unsigned int hash = 0;
- unsigned int test = 0;
- unsigned int i = 0;
- for(i = 0; i < len; str++, i++)
- {
- hash = (hash << OneEighth) + (*str);
- if((test = hash & HighBits) != 0)
- {
- hash = (( hash ^ (test >> ThreeQuarters)) & (~HighBits));
- }
- }
- return hash;
- }
- /* End Of P. J. Weinberger Hash Function */
- unsigned int ELFHash(char* str, unsigned int len)
- {
- unsigned int hash = 0;
- unsigned int x = 0;
- unsigned int i = 0;
- for(i = 0; i < len; str++, i++)
- {
- hash = (hash << 4) + (*str);
- if((x = hash & 0xF0000000L) != 0)
- {
- hash ^= (x >> 24);
- }
- hash &= ~x;
- }
- return hash;
- }
- /* End Of ELF Hash Function */
- unsigned int BKDRHash(char* str, unsigned int len)
- {
- unsigned int seed = 131; /* 31 131 1313 13131 131313 etc.. */
- unsigned int hash = 0;
- unsigned int i = 0;
- for(i = 0; i < len; str++, i++)
- {
- hash = (hash * seed) + (*str);
- }
- return hash;
- }
- /* End Of BKDR Hash Function */
- unsigned int SDBMHash(char* str, unsigned int len)
- {
- unsigned int hash = 0;
- unsigned int i = 0;
- for(i = 0; i < len; str++, i++)
- {
- hash = (*str) + (hash << 6) + (hash << 16) - hash;
- }
- return hash;
- }
- /* End Of SDBM Hash Function */
- unsigned int DJBHash(char* str, unsigned int len)
- {
- unsigned int hash = 5381;
- unsigned int i = 0;
- for(i = 0; i < len; str++, i++)
- {
- hash = ((hash << 5) + hash) + (*str);
- }
- return hash;
- }
- /* End Of DJB Hash Function */
- unsigned int DEKHash(char* str, unsigned int len)
- {
- unsigned int hash = len;
- unsigned int i = 0;
- for(i = 0; i < len; str++, i++)
- {
- hash = ((hash << 5) ^ (hash >> 27)) ^ (*str);
- }
- return hash;
- }
- /* End Of DEK Hash Function */
- unsigned int BPHash(char* str, unsigned int len)
- {
- unsigned int hash = 0;
- unsigned int i = 0;
- for(i = 0; i < len; str++, i++)
- {
- hash = hash << 7 ^ (*str);
- }
- return hash;
- }
- /* End Of BP Hash Function */
- unsigned int FNVHash(char* str, unsigned int len)
- {
- const unsigned int fnv_prime = 0x811C9DC5;
- unsigned int hash = 0;
- unsigned int i = 0;
- for(i = 0; i < len; str++, i++)
- {
- hash *= fnv_prime;
- hash ^= (*str);
- }
- return hash;
- }
- /* End Of FNV Hash Function */
- unsigned int APHash(char* str, unsigned int len)
- {
- unsigned int hash = 0xAAAAAAAA;
- unsigned int i = 0;
- for(i = 0; i < len; str++, i++)
- {
- hash ^= ((i & 1) == 0) ? ( (hash << 7) ^ (*str) * (hash >> 3)) :
- (~((hash << 11) + (*str) ^ (hash >> 5)));
- }
- return hash;
- }
- /* End Of AP Hash Function */
相關文章
- <Openssl下hash函式>函式
- ton函式函式hash的兩種形式函式
- Hash函式及其應用函式
- hash函式的幾種函式
- php增量Hash函式的使用PHP函式
- oracle中的幾個hash函式Oracle函式
- [20170402]函式索引standard_hash.txt函式索引
- PostgreSQL 原始碼解讀(142)- Buffer Manager#7(hash_search_with_hash_value函式)SQL原始碼函式
- 使用模擬退火演算法優化 Hash 函式演算法優化函式
- Python函式每日一講 - 一文徹底讓你明白hash函式的使用Python函式
- 分散式事務和分散式hash分散式
- 當Bcrypt與其他Hash函式同時使用時造成的安全問題函式
- 雜湊函式(Hash Functions - 雜湊函式)的基本介紹(SHA-2,SHA-256,MD-5,Scrypt,BCrypt等)函式Function
- 關於Hash 函式 雜湊索引表 解決位置衝突的問題函式索引
- MySQL函式大全(字串函式,數學函式,日期函式,系統級函式,聚合函式)MySql函式字串
- Oracle 函式大全(字串函式,數學函式,日期函式,邏輯運算函式,其他函式)Oracle函式字串
- 【函式式 Swift】函式式思想函式Swift
- python中id()函式、zip()函式、map()函式、lamda函式Python函式
- 【函式】Oracle函式系列(2)--數學函式及日期函式函式Oracle
- Python 擴充之特殊函式(lambda 函式,map 函式,filter 函式,reduce 函式)Python函式Filter
- 第7章 IF函式 COUNTIF函式 SUMIF函式函式
- 字元函式、數字函式和日期函式字元函式
- 【函式】Oracle EXTRACT()函式與to_char() 函式函式Oracle
- MySQL(四)日期函式 NULL函式 字串函式MySql函式Null字串
- 【函式】ORACLE函式大全函式Oracle
- (譯) 函式式 JS #2: 函式!函式JS
- 核函式 多項式核函式 高斯核函式(常用)函式
- 函式名/函式地址/函式指標函式指標
- 第 8 節:函式-匿名函式、遞迴函式函式遞迴
- lambda匿名函式sorted排序函式filter過濾函式map對映函式函式排序Filter
- js函式 函式自呼叫 返回函式的函式 (閉包)JS函式
- main函式的入口函式AI函式
- (函式)實現strstr函式函式
- 字串函式之Strtok()函式字串函式
- SQL函式之日期函式SQL函式
- Oracle聚合函式/分析函式Oracle函式
- fork函式與vfork函式函式
- 常用函式--時間函式函式