- 授权协议: 未知
- 开发语言: Swift
- 操作系统: OS X
- 软件首页: https://github.com/krzyzanowskim/CryptoSwift
软件介绍
CryptoSwift 是 Swift 实现的 Crypto 相关的函数。
// convenience setup tuple
let setup = (key: keyData, iv: ivData)
// encrypt
if let encrypted = Cipher.ChaCha20(setup).encrypt(dataToEncrypt) {
// decrypt
if let decrypted = Cipher.ChaCha20(setup).decrypt(encrypted) {
// validate result
if (encrypted.isEqual(decrypted)) {
print("Decryption failed!")
}
}
}
Beginning XML with DOM and Ajax
Sas Jacobs / Apress / 2006-06-05 / USD 39.99
Don't waste time on 1,000-page tomes full of syntax; this book is all you need to get ahead in XML development. Renowned web developer Sas Jacobs presents an essential guide to XML. Beginning XML with......一起来看看 《Beginning XML with DOM and Ajax》 这本书的介绍吧!
