假设我想使用Swift 2.x获取位于OSX的bash
目录中的/bin
的校验和。对于我的OSX版本,MD5是
5d7583d80e5314ac844eedc6d68c6cd7
我使用md5 bash
计算了它。我还使用online tool验证了它。
我决定使用CommonCrypto,因为它看起来速度优于other options at this time。当我运行我的代码时,我得到了不同的结果:
bash: d574d4bb40c84861791a694a999cce69
任何帮助将不胜感激。 bridging-header和AppDelegate的内容都在下面。
md5-Bridging-Header.h
#import <CommonCrypto/CommonCrypto.h>
AppDelegate.swift
import Cocoa
extension String {
func md5() -> String! {
let str = self.cStringUsingEncoding(NSUTF8StringEncoding)
let strLen = CUnsignedInt(self.lengthOfBytesUsingEncoding(NSUTF8StringEncoding))
let digestLen = Int(CC_MD5_DIGEST_LENGTH)
let result = UnsafeMutablePointer<CUnsignedChar>.alloc(digestLen)
CC_MD5(str!, strLen, result)
let hash = NSMutableString()
for i in 0..<digestLen {
hash.appendFormat("%02x", result[i])
}
result.destroy()
return String(format: hash as String)
}
}
@NSApplicationMain
class AppDelegate: NSObject, NSApplicationDelegate {
@IBOutlet weak var window: NSWindow!
func applicationDidFinishLaunching(aNotification: NSNotification) {
// Insert code here to initialize your application
let fm = NSFileManager.defaultManager()
let path = "/bin"
let items = try! fm.contentsOfDirectoryAtPath(path)
for item in items {
print("\(item): " + item.md5())
}
}
}
答案 0 :(得分:3)
我认为您的程序会计算字符串"bash"
的MD5,而不会计算名为 bash 的文件的内容。