SweetHMAC Swift 字符串加密

我要开发同款
匿名用户2015年03月30日
41阅读
开发技术Swift
所属分类加密/解密软件包、程序开发
授权协议MIT

作品详情

SweetHMAC是个极小,简单易用的Swift类,使用HMAC算法加密字符串。

字符串扩展:

// Will output this string: e470f785afb708cd8c2a31860642fd11"I'm going to make him an offer he can't refuse".HMAC(.MD5, secret:"Vito Corleone")

HMAC:

let quote = "I'm going to make him an offer he can't refuse"let author = "Vito Corleone"// Create a SweetHMAC instance with your message and secret stringslet hmacEncrypt:SweetHMAC = SweetHMAC(source: quote, secret: author)// Pick some computed HMAC output based on some algorithm using "HMAC" method...let md5 = hmacEncrypt.HMAC(.MD5)// ...or do it more "Sweet" like thislet md5 = SweetHMAC(source: quote, secret: author).HMAC(.MD5)

声明:本文仅代表作者观点,不代表本站立场。如果侵犯到您的合法权益,请联系我们删除侵权资源!如果遇到资源链接失效,请您通过评论或工单的方式通知管理员。未经允许,不得转载,本站所有资源文章禁止商业使用运营!
下载安装【程序员客栈】APP
实时对接需求、及时收发消息、丰富的开放项目需求、随时随地查看项目状态

评论