目前我在Java中使用加密实例,如下所示:
Cipher cipher = Cipher.getInstance("RSA");
但我无法在OpenSSL中解密我的加密消息,我想使用RSA_PKCS1_OAEP_PADDING。
我需要添加到"RSA"
以便能够使用RSA_PKCS1_OAEP_PADDING吗?
请帮忙
答案 0 :(得分:5)
您是否尝试过使用" RSA / NONE / OAEPPadding"在getInstance()
?
否则,请查看Java Cryptography Architecture Standard Algorithm Name Documentation以查找可能的参数列表。