mirror of
https://github.com/ichmagmaus111/ghostgram.git
synced 2026-04-24 00:25:58 +02:00
13 lines
276 B
Swift
13 lines
276 B
Swift
import Foundation
|
|
import MurMurHash32
|
|
|
|
public enum HashFunctions {
|
|
public static func murMurHash32(_ s: String) -> Int32 {
|
|
return murMurHashString32(s)
|
|
}
|
|
|
|
public static func murMurHash32(_ d: Data) -> Int32 {
|
|
return murMurHash32Data(d)
|
|
}
|
|
}
|