在 Objective-c 中使用 AES

发布于 2024-11-19 06:28:08 字数 236 浏览 1 评论 0原文

我正在寻找使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

昔日梦未散 2024-11-26 06:28:08

这是 NSData 上的一个类别 - 它将 AES256EncryptWithKey:AES256DecryptWithKey: 添加到 NSData 支持的方法中。

因此,要加密字符串,您首先需要将字符串转换为 NSData 对象(使用 dataUsingEncoding: 在字符串上),然后调用 AES256EncryptWithKey在从 dataUsingEncoding 获取的 NSData 对象上。

This is a category on NSData-- it adds AES256EncryptWithKey: and AES256DecryptWithKey: 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 call AES256EncryptWithKey on the NSData object you get from dataUsingEncoding.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文