Insecure.MD5 in iOS13.0 get incorrect result – Ios swift
When I use Insecure.MD5.hash(data: data) to get a md5 result of a data, I found in iOS 13.0 the result is incorrected, this is my code: if let data = "helloworld".data(using: .utf8) { let digest = Insecure.MD5.hash(data: data) for i…