是否可以追溯到 IPA 二进制文件中的字符串?

发布于 2024-11-14 20:59:11 字数 233 浏览 2 评论 0原文

我的意思是,如果我在代码中写一些东西:

NSString *myKey = @"this is my private key";

有人能够从 IPA 中追溯到字符串 “this is my private key” 吗?

我问这个是为了 iPhone 的加密。

如果我将加密密钥存储在代码中,它已经安全了吗?或者我应该怎么做?

I mean if I write something in the code:

NSString *myKey = @"this is my private key";

Will someone be able to trace back the string "this is my private key" from the IPA?

I ask this for the encryption in iPhone.

If I store my encrypt key in the code, is it already safe? or how should I do it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

盛夏已如深秋| 2024-11-21 20:59:11

是的,有可能。 IPA 只是一个 zip 文件。您可以提取它以获取应用程序二进制文件。您通常可以在应用程序二进制文件上运行strings来查看字符串文字。

Yes, it's likely. An IPA is just a zip file. You can extract it to get the application binary. You can usually run strings over an application binary to see string literals.

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