使用CryptoSwift从文件获取哈希

时间:2018-03-05 20:29:42

标签: swift hash cryptoswift

所以我尝试从文件中获取哈希值。使用CryptoSwift库。 truth是我从VLC网站获得的哈希变量,因此应该是真的。但是,我生成的哈希与我知道的哈希是不同的。

我想错过哪一步?

代码:

let filePath = "/Users/pjc/Desktop/vlc-3.0.0.dmg"

let fileURL = URL(fileURLWithPath: filePath)
let truth = "e6f7179cb06809b6101803da3ac4191edb72ecf82f31b8ae7dbf010e1a78ba26"

do {
   let fileData = try Data.init(contentsOf: fileURL)
   print(fileData)
   let fileBytes = fileData.bytes
   let hash = fileBytes.sha256()
   print(hash.debugDescription)

} catch {

   //handle error
   print(error)
}

print(hash)
print(truth)

日志:

fileData: 46818658 bytes
hash.debugDescription: [230, 247, 23, 156, 176, 104, 9, 182, 16, 24, 3, 218, 58, 196, 25, 30, 219, 114, 236, 248, 47, 49, 184, 174, 125, 191, 1, 14, 26, 120, 186, 38]
hash: 105553117580736
truth: e6f7179cb06809b6101803da3ac4191edb72ecf82f31b8ae7dbf010e1a78ba26

2 个答案:

答案 0 :(得分:3)

计算哈希值不需要框架。你可以用CommonCrypto做任何事情。您只需要添加一个包含

的桥接头
#import <CommonCrypto/CommonCrypto.h>

您可以查找here如何添加桥接标题。

extension Data {

    var hexString: String {
        return map { String(format: "%02hhx", $0) }.joined()
    }

    var sha256: Data {
        var digest = [UInt8](repeating: 0, count: Int(CC_SHA256_DIGEST_LENGTH))
        self.withUnsafeBytes({
            _ = CC_SHA256($0, CC_LONG(self.count), &digest)
        })
        return Data(bytes: digest)
    }

}

答案 1 :(得分:3)

[230, 247, 23, 156, 176, 104, 9, 182, 16, 24, 3, 218, 58, 196, 25, 30, 219, 114, 236, 248, 47, 49, 184, 174, 125, 191, 1, 14, 26, 120, 186, 38]

e6f7179cb06809b6101803da3ac4191edb72ecf82f31b8ae7dbf010e1a78ba26

只是相同哈希值的两种不同表示形式:第一种 作为整数数组,第二个作为十六进制的字符串 表示字节。

CryptoSwift库的.toHexString()方法创建了一个 因此,数组中的十六进制字符串

print(hash.toHexString())

应该产生预期的结果。