WyhashとWyrandは、それぞれ理想的な64ビットハッシュ関数とPRNGです。
ソリッド:ワイハッシュはSmhasherを通り過ぎ、ワンドはプラクターのBigcrushを通過しました。
ポータブル:64ビット/32ビットシステム、ビッグ/リトルエンディアン。
最速:64ビットマシンでは、特に短いキーで効率的です。
最も単純:コードサイズの意味で。
Salted :意図した攻撃を避けるために、動的な秘密を使用します。
wyhashは、great Zig、v、nim and go(1.17以降)言語のデフォルトのハッシュアルゴリズムです。マイルストーンの1つは、Wyhashが[Windowsターミナル](Microsoft/Terminal#13686)にMicrosoftによって展開されたことです。
簡単な例:
#include "wyhash.h"
uint64_t _wyp[4];
make_secret(time(NULL),_wyp);
string s="fcdskhfjs";
uint64_t h=wyhash(s.c_str(),s.size(),0,_wyp);
制限:
Wyhash/Wyrandには制限があることが今知られています。
どちらも64ビットの衝突耐性ではありませんが、約62ビットです(FlyingMutant/CYAN4973/VIGNA)
長いデータセット(32TB、23日)でテストすると、ワンドはPractrand(Vigna)に失敗します
そして、将来的にはさらに多くの欠陥があるかもしれません。
ユーザーは、誰も完璧ではないため、Wyhash/Wyrandの利点と欠陥に基づいて独自の決定を下す必要があります。
C# https://github.com/cocowalla/wyhash-dotnet
C ++ https://github.com/tommyettinger/waterhash
C ++ https://github.com/alainesp/wy
https://github.com/dgryski/go-wyhashに行きます
https://github.com/orisano/wyhashに行きます
https://github.com/littleli/go-wyhash16に行きます
https://github.com/zeebo/wyhashに行きます
https://github.com/lonewolf3739/wyhash-goに行きます
https://github.com/zhangyunhao116/wyhash (最終バージョン1 && 3)
Java https://github.com/openhft/zero-allocation-hashing
Java https://github.com/dynatrace-oss/hash4j(最終バージョン3および4)
Kotlin Multiplatform https://github.com/appmattus/crypto/tree/main/cryptohash
nim https://github.com/nim-lang/nim/blob/devel/lib/pure/hashes.nim
nim https://github.com/jackhftang/wyhash.nim
nim https://github.com/littleli/nim-wyhash16
Rust https://github.com/eldruin/wyhash-rs
Swift https://github.com/lemire/swiftwyhash
Swift https://github.com/lemire/swiftwyhashbenchmark
Swift https://github.com/jeudesprits/pswyhash
v https://github.com/vlang/v/tree/master/vlib/hash/wyhash(v4)
zig https://github.com/mandejan/zig-wyhash
absl hashmap https://github.com/abseil/abseil-cpp/blob/master/absl/hash/internal/low_level_hash.h
これらの名前に感謝します:
Reini Urban
ディートリッヒ・エップ
ジョシュア・ハーバーマン
Tommy Ettinger
ダニエル・レミア
otmar ertl
ココワラ
レオ・ユリエフ
ディエゴ・バリオス・ロメロ
ポーリー-G
ダンブロブ
ヤンコレット
IVTE-MS
ハイブ
ジェームズZMガオ
EasyASPI314(DEVIN)
直en
フライングマタン
ヴィニャ
タンジー