mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
13 lines
278 B
Swift
13 lines
278 B
Swift
import Foundation
|
|
import MurMurHashObjC
|
|
|
|
public enum HashFunctions {
|
|
public static func murMurHash32(_ s: String) -> Int32 {
|
|
return murMurHashString32(s)
|
|
}
|
|
|
|
public static func murMurHash32(_ d: Data) -> Int32 {
|
|
return murMurHash32Data(d)
|
|
}
|
|
}
|