是否可以追溯到 IPA 二进制文件中的字符串?
我的意思是,如果我在代码中写一些东西:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,有可能。 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.