1
我發現我們可以用CommonCrypto來散列一些字符串。 我看到一些例子,但他們不使用鹽。 我如何使用SHA256加鹽?如何在swift中使用SHA256加鹽(一些鍵)
我發現我們可以用CommonCrypto來散列一些字符串。 我看到一些例子,但他們不使用鹽。 我如何使用SHA256加鹽?如何在swift中使用SHA256加鹽(一些鍵)
將您的indata與鹽結合並運行哈希計算;
func hash(input: String, salt: String) -> String {
let toHash = input + salt
// TODO: Calculate the SHA256 hash of "toHash" and return it
// return sha256(toHash)
// Return the input data and hash for now
return toHash
}
print(hash("somedata", salt: "1m8f")) // Prints "somedata1m8f"
謝謝!沒關係,只需將鹽串添加到鍵即可! – kimpro
葉普,應該這樣做! – Mattias