PKCS#1 V2.0 是否针对 Java 实现?
我需要完全使用 PKCS#1 V2.0 加密方法(在 PKCS#1V2 规范)。
Java 已经实现了吗?
我正在考虑将参数传递给 javax.crypto.Cipher 并指定“PKCS#1V2”,我想知道是否有类似的东西?
I need encrypt data using exactly the PKCS#1 V2.0 encryption method (defined in item 7.2.1 of the PKCS#1V2 specification).
Is it already implemented for Java?
I'm thinking in something like just pass a parameter to javax.crypto.Cipher specifying "PKCS#1V2", I wonder if there is something like this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
PKCS#1 v2.0 加密通常称为 OAEP 加密。因此:
要查看的地方是 Java 加密体系结构文档: 标准算法名称文档 或 Sun 提供商文档。
如您所见,SunJCE 提供程序支持以下 OAEP 变体:
PKCS#1 v2.0 encryption is usually called OAEP encryption. So:
The place to look is the Java Cryptography Architecture documents: Standard Algorithm Name Documentation or Sun Providers Documentation.
As you can see the SunJCE provider supports the following variations of OAEP: