Ejemplo n.º 1
0
Archivo: FNV.cs Proyecto: Onebeld/Regul
 public static uint Hash32(string s, bool highBit) =>
 (uint)FNVGenerator.Hash(s, 32, new ulong?(), (highBit ? 1 : 0) != 0);
Ejemplo n.º 2
0
Archivo: FNV.cs Proyecto: Onebeld/Regul
 public static ulong Hash64(string s, bool highBit) =>
 FNVGenerator.Hash(s, 64, new ulong?(), (highBit ? 1 : 0) != 0);