在 Objective-c 中使用 AES
我正在寻找使用 Objective-C 中用户定义的关键字来加密和解密 NSString 的方法。我在另一篇 Stack Overflow 帖子中找到了这一点:AES256 in Objective-c。
如何才能开始使用这些方法,我对 Objective-C 编程相当陌生。我该怎么做?有这方面的教程吗?
提前致谢!
I'm looking for ways to encrypt and decrypt NSStrings with a user defined keyword in Objective-C. I found this in a different Stack Overflow post:AES256 in objective-c.
How can one go about using these methods, I'm fairly new to Objective-C programming. How can I do this? Are there any tutorials on this?
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是 NSData 上的一个类别 - 它将
AES256EncryptWithKey:
和AES256DecryptWithKey:
添加到 NSData 支持的方法中。因此,要加密字符串,您首先需要将字符串转换为 NSData 对象(使用
dataUsingEncoding:
在字符串上),然后调用AES256EncryptWithKey
在从dataUsingEncoding
获取的 NSData 对象上。This is a category on NSData-- it adds
AES256EncryptWithKey:
andAES256DecryptWithKey:
to the methods supported by NSData.So, to encrypt a string, you would first convert your string into an NSData object (using
dataUsingEncoding:
on the string), then callAES256EncryptWithKey
on the NSData object you get fromdataUsingEncoding
.