在swift中使用md5

在swift中使用md5,第1张

概述在swift中使用md5 by 伍雪颖 在ProjectName-Bridging-Header.h中添加 #import <CommonCrypto/CommonCrypto.h> extension  String {     var MD5: String {         let cString = self . cStringUsingEncoding ( NSUTF8StringEn 在swift中使用md5 by 伍雪颖


在Projectname-BrIDging-header.h中添加 #import <CommonCrypto/CommonCrypto.h> extension String { var MD5: String {
let cString = self . cStringUsingEnCoding ( NSUTF8StringEnCoding )
let length = CUnsignedInt (
lengthOfBytesUsingEnCoding ( NSUTF8StringEnCoding )
)
let result = UnsafeMutablePointer < CUnsignedChar >. alloc ( Int ( CC_MD5_DIGEST_LENGTH ))
CC_MD5 (cString!,length,result)
return String (format: "%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x" ,
result[
0 ],result[ 1 ],216)">2 ],216)">3 ],216)">4 ],216)">5 ],216)">6 ],216)">7 ],216)">8 ],216)">9 ],216)">10 ],216)">11 ],216)">12 ],216)">13 ],216)">14 ],216)">15 ])
}
}

使用:

println("rain".MD5)

总结

以上是内存溢出为你收集整理的在swift中使用md5全部内容,希望文章能够帮你解决在swift中使用md5所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1086845.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-27
下一篇 2022-05-27

发表评论

登录后才能评论

评论列表(0条)

保存