英文:
"Google play App - signing issue" NoSuchAlgorithmException exception
问题
在运行以下命令时,我们收到以下错误信息:
java -jar pepk.jar --keystore=foo.keystore --alias=foo --output=encrypted_private_key_path --rsa-aes-encryption --encryption-key-path=/path/to/encryption_public_key.pem
无法导出或加密私钥
java.security.NoSuchAlgorithmException: 找不到支持RSA/NONE/OAEPWithSHA1AndMGF1Padding的任何提供程序
我们已安装了最新的idk 17,但在应用签名中出现了问题
我阅读了有关bouncycastle的信息,以解决此问题,但不知道如何在Mac上安装它或在idk 17中使用它,请帮助我们。
英文:
while runing below command we get below error
java -jar pepk.jar --keystore=foo.keystore --alias=foo --output=encrypted_private_key_path --rsa-aes-encryption --encryption-key-path=/path/to/encryption_public_key.pem
Unable to export or encrypt the private key
java.security.NoSuchAlgorithmException: Cannot find any provider supporting RSA/NONE/OAEPWithSHA1AndMGF1Padding
We have latest idk 17 installed but issue coming with app signing
I read about bouncycastle to fix this but no idea how can install for mac or use it for idk 17 etc please help us
答案1
得分: 2
你应该安装OpenJDK 20.0.1链接描述在此,然后再次运行该命令。
英文:
I got the same problem,you should install OpenJDK 20.0.1enter link description here,and run the command again.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论