mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-07-04 18:41:00 +00: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)
|
|
}
|
|
}
|