我想解密使用 RSA 公钥加密加密的 1024 位数据。我可以访问
public key modulus,
public key exponent,
prime p,
prime q,
exponent1 (d mod(p-1)),
exponent2 (d mod(q-1)) and
coefficient ( (1/q) mod p )
我无权访问私钥指数。有没有办法在没有 RSA 私有指数和所有这些可用 api 的情况下解密数据?我正在使用 openssl 进行 RSA 操作。我听说有中文提示,我们只需要 p,q,exponent 1, exponent 2 和 RSA-decryption 的系数。但我正在寻找openssl中的api。openssl 中是否有任何有用的方法可以在没有私有指数的情况下进行解密?