Android 上的 Diffie Hellman 和 AES

发布于 2024-11-28 00:21:27 字数 80 浏览 1 评论 0 原文

我正在尝试使用 Diffie Hellman 进行密钥交换,并使用 AES 来使用密钥加密数据。谁能给我提供一个合适的 Android 工作样本?

I am trying to use Diffie Hellman for key exchange and AES to encrypt data with keys. Can anyone provide me a suitable work sample for android ?

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

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

发布评论

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

评论(1

悍妇囚夫 2024-12-05 00:21:27

事实上,我自己最近一直在研究类似的问题。我没有工作示例,但您应该注意以下几点:

  1. Android 使用部分 Bouncy Castle 包来处理大部分加密,但有些人更喜欢使用自己的加密包(Spongy Castle)是一个经常被引用的替代方案),因为 Android 的不完整。请参阅此处的讨论

  2. 如果您选择使用 Android 现有的工具,则可以通过 Cipher 访问它们。以下是Android 支持的实用算法列表.

  3. 请注意,如果您选择使用某些非 Android Java 加密库,Android 并不支持您的库可能需要的所有 Java 包。请参阅 我的(当前未回答的)有关如何处理该问题的问题Spongy Castle

希望这些有帮助!

I've actually been working on a similar problem lately myself. I don't have a working sample, but here are some points you should be aware of:

  1. Android uses a partial Bouncy Castle package to handle most of its cryptography, but some people prefer to user their own cryptographic package (Spongy Castle is a commonly cited alternative) since Android's is incomplete. See the discussion in here.

  2. If you choose to use Android's existing tools, you can access them through Cipher. Here is a useful list of algorithms Android supports.

  3. Be aware that if you choose to use some non-Android Java crypto library, Android does not support all Java packages your library may need. See my (currently unanswered) question about how to deal with that in Spongy Castle.

Hope these help!

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