我是CryptoKit的新手,我正在努力将这段代码从Node.js翻译成Swift(使用CryptoKit)。
// create a sha256 hmac with the secret
var hmac = crypto.createHmac('sha256', key);
return hmac.update(what).digest('base64');
我在Swift/CryptoKit上做的是:
var hmac = SHA256.hash(data: Data(base64Encoded: key)!)
但是我不知道如何处理第二行。在Ruby中可以这样做:
HMAC.digest('sha256', secret, what)
但是CryptoKit没有这个方法,有什么想法吗?
如果Swift使用CryptoKit,你可以这样写:
// create the prehash string by concatenating required parts
guard let what: Data = (timestampString + methodString + requestPathString + bodyString).data(using: .utf8) else {
fatalError(...)
}
guard let key: Data = Data(base64Encoded: secret) else {
fatalError(...)
}
let authenticationCode = HMAC<SHA256>.authenticationCode(for: what, using: key)
最后一行计算您的"消息验证码"。
您可以将其转换为数据:
let authenticationCodeData = Data(authenticationCode)
和base64编码的字符串:
let authenticationCodeBase64String = authenticationCodeData.base64EncodedString()
网上有很多苹果和其他公司的教程。