- 授权协议: 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)
人月神话(英文版)
[美] Frederick P. Brooks, Jr. / 人民邮电出版社 / 2010-8 / 29.00元
本书内容源于作者Brooks在IBM公司任System/360计算机系列以及其庞大的软件系统OS/360项目经理时的实践经验。在本书中,Brooks为人们管理复杂项目提供了最具洞察力的见解,既有很多发人深省的观点,又有大量软件工程的实践,为每个复杂项目的管理者给出了自己的真知灼见。 大型编程项目深受由于人力划分产生的管理问题的困扰,保持产品本身的概念完整性是一个至关重要的需求。本书探索了达成......一起来看看 《人月神话(英文版)》 这本书的介绍吧!
