(string fingerprint)
| 22 | public static class SchemaHash |
| 23 | { |
| 24 | public static uint StructHash32(string fingerprint) |
| 25 | { |
| 26 | byte[] bytes = Encoding.UTF8.GetBytes(fingerprint); |
| 27 | (ulong h1, _) = MurmurHash3.X64_128(bytes, 47); |
| 28 | return unchecked((uint)h1); |
| 29 | } |
| 30 | } |
| 31 |