如何安全地发送字符串,iphone
如何最安全地发送字符串。 加密时遇到一些问题。 我在iPhone中的加密值与webapp不相似。
因此,请建议从 iphone 发送字符串的最安全的形式(加密除外)。
提前致谢。
How to send a string in most securely.
Got some issue with encryption.
My encrypted value in iPhone is not similar to webapp.
So please suggest the most secured form of sending a string from iphone (except encryption).
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不使用加密就没有安全的发送字符串的方法。如果您要发送密码,这意味着您不需要能够重现原始字符串,您可以只发送哈希值。
如果您必须能够重现原始字符串,我想最简单的方法就是使用 SSL。如果您不想购买昂贵的证书,可以使用自签名证书并将其与应用程序捆绑在一起。
There is no secure way of sending a string without using encryption. If you're sending passwords, which means that you don't need to be able to reproduce the original string, you could just send hash values.
If you have to be able to reproduce the original string I guess the easiest way is to just use SSL. If you don't want to buy an expensive certificate, you could use a self-signed certificate and bundle it with the application.