KeyFactory 有哪些不同类型的实例?
使用 KeyFactory kg = KeyFactory.getInstance(ALGORITHM)
时可以使用哪些不同的算法?我知道有“DSA”、“RSA”,但还支持哪些其他选项?
When using KeyFactory kg = KeyFactory.getInstance(ALGORITHM)
what are the different algorithms that could be used? I know there is "DSA", "RSA" but which other are supported?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在 此处获取 KeyFactory 支持的算法列表。您可以在 此处获取其他安全相关类支持的算法列表
注意:key.getAlgorithm() 将返回“DH”而不是
“迪菲·赫尔曼”。
You can get the list of supported algorithms for KeyFactory here. You can get a list algorithms supported by other security related classes here
Note: key.getAlgorithm() will return "DH" instead of
"DiffieHellman".