- 授权协议: MIT
- 开发语言: Swift
- 操作系统: OS X
- 软件首页: https://github.com/jancassio/SweetHMAC
软件介绍
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 strings let 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 this let md5 = SweetHMAC(source: quote, secret: author).HMAC(.MD5)
从零开始做产品经理
萧七公子 / 中国华侨出版社 / 2016-12-1 / 27.9
《从零开始做产品经理:产品经理的第一本书》根据产品经理的能力需求与成长体系,共分为八章内容,从了解产品开始,到挖掘用户需求、进行产品设计、管理团队、进行项目管理、产品运营、把握产品的生命周期,以及产品经理的成长路径,全面阐释了产品经理的修炼之道。《从零开始做产品经理:产品经理的第一本书》书中信息量大,图文并茂,论点与论据相得益彰,并且融合了丰富的案例与故事,使得整个阅读过程妙趣横生而且迅速开“悟道......一起来看看 《从零开始做产品经理》 这本书的介绍吧!
