iPhone 中使用 .NET 生成的公钥进行 RSA 加密?

发布于 2024-12-01 23:43:40 字数 97 浏览 0 评论 0原文

如何在 iOS 中使用 RSA 加密来加密数据?我想使用从 .NET 发送的公钥进行加密。是否可以?。我如何从 .NET Web 服务发送公钥?

提前致谢, 萨纳尔

How can i encrypt data using RSA encryption in iOS?. I want to encrypt using public key that is send from .NET. is it possible?. How can i send public key from .NET webservice?.

Thanks in Advance,
Sanal

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

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

发布评论

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

评论(1

为人所爱 2024-12-08 23:43:40

如何在 iOS 中使用 RSA 加密来加密数据?

几种选择。如果您使用 C 或 ObjectiveC,那么最简单的方法是使用 CommonCrypto

您还可以通过 MonoTouch 在 iOS 设备上使用 C# 和 .NET 框架(免责声明,我为 Xamarin 工作)并在您的网络服务和设备之间共享代码。

我想使用从 .NET 发送的公钥进行加密。这可能吗?

是的。您通常使用对称密钥(例如 AES)加密(可能很大),然后使用公钥加密对称(秘密)密钥。请参阅我的旧博客文章,了解更多详细信息

如何从 .NET Web 服务发送公钥?

您可以将其作为XML发送,调用rsa.ToXmlString()以获取xmldsig定义格式的公钥。

请注意,从您之前的回答来看,尚不清楚 Web 服务是加密(并且 iOS 客户端解密)还是相反(也可能两者都是)。您需要注意私钥的生成位置以及密钥如何在服务和设备之间传输(例如使用 https)。

How can i encrypt data using RSA encryption in iOS?

Several choice. If you use C or ObjectiveC then the easiest way is to use CommonCrypto.

You can also use C# and the .NET framework on your iOS devices with MonoTouch (disclaimer, I work for Xamarin) and share code between your web service and device.

I want to encrypt using public key that is send from .NET. is it possible?

Yes. You generally encrypt the (potentially large) using a symmetric key (e.g. AES) then encrypt the symmetric (secret) key using the public key. See my old blog entry for more details.

How can i send public key from .NET webservice?

You can send it as XML, call rsa.ToXmlString () to get the public key in the xmldsig-defined format.

Note that it's unclear, from your previous answer, if the web services encrypts (and the iOS client decrypts) or the other way around (could be both too). You'll want to take care where the private key is generated and how the keys are transfered between the service and device (e.g. using https).

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