美文网首页
swift sh256

swift sh256

作者: 农夫_三拳 | 来源:发表于2019-09-30 05:12 被阅读0次
    func sha256(data : Data) -> Data {
            var hash = [UInt8](repeating: 0,  count: Int(CC_SHA256_DIGEST_LENGTH))
            data.withUnsafeBytes {
                _ = CC_SHA256($0.baseAddress, CC_LONG(data.count), &hash)
            }
            return Data(hash)
        }
    
    
        @IBAction func touch(_ sender: Any) {
            let data = "123456".data(using: String.Encoding.utf8)
            print(sha256(data: data!).base64EncodedString())
        }
    
    

    相关文章

      网友评论

          本文标题:swift sh256

          本文链接:https://www.haomeiwen.com/subject/fhqcpctx.html