为什么我无法使用keytool和RSA生成密钥?

问题描述 投票:1回答:2

所以这就是我的尝试

keytool -genkey -v -keystore my-release-key.jks -keyalg RSA -keysize 2048 -validity 10000

但是我得到了这个......

keytool error: java.security.NoSuchAlgorithmException: RSA KeyGenerator not available
java.security.NoSuchAlgorithmException: RSA KeyGenerator not available

我该怎么办 ?

p.s using:jdk1.8.0_121

java algorithm cordova ionic-framework rsa
2个回答
4
投票

当执行命令keytool -genkey -v -keystore my-release-key.jks -keyalg RSA -keysize 2048 -validity 10000时没有错误,这是输出的一个例子。

Generating 2,048 bit RSA key pair and self-signed certificate (SHA256withRSA) with a validity of 10,000 days    for: CN=a, OU=a, O=a, L=a, ST=a, C=a
Enter key password for <mykey>
    (RETURN if same as keystore password):  
[Storing my-release-key.jks]

但是什么导致java.security.NoSuchAlgorithmException: RSA KeyGenerator not available

此错误意味着keytool尝试通过RSA无效算法实例化KeyGenerator对象。为什么RSA是KeyGenerator的无效算法?这是因为RSA是非对称密钥的算法,而KeyGenerator是创建对称密钥的类。

现在让我们做一些测试来澄清想法并使用RSA创建一个KeyGenerator对象:

public class KeyGeneratorTest {
    public static void main(String[] args) {
        try {
            KeyGenerator keyGeneratorTest=KeyGenerator.getInstance("RSA");
        } catch (NoSuchAlgorithmException e) {
            e.printStackTrace();
        }
    }
}

前面的代码生成了问题中报告的相同异常:

java.security.NoSuchAlgorithmException: RSA KeyGenerator not available
    at javax.crypto.KeyGenerator.<init>(KeyGenerator.java:169)
    at javax.crypto.KeyGenerator.getInstance(KeyGenerator.java:223)

现在我将尝试使用keytool和RSA算法参数创建对称密钥。

keytool -genseckey -alias mytest2 -keyalg RSA -keysize 192 -storetype JCEKS

输出与问题报告的输出完全相同。

keytool error: java.security.NoSuchAlgorithmException: RSA KeyGenerator not available

抛出错误是因为内部keytool -genseckey命令尝试使用RSA算法参数(-keyalg RSA)创建KeyGenerator对象,因为我提到RSA不是用于创建对称密钥的有效算法。

请访问以下文档以了解有关keytool的更多信息。 List of Java Standard Algorithm NamesNoSuchAlgorithmException DocumentationKeytool source codeKeytool reference documentation


0
投票

也许你想用

keytool -genseckey -keystore my-release.pf12 -deststoretype pkcs12 -keyalg AES -keysize 256 -storepass <passwd> -keypass <passwd> -noprompt
© www.soinside.com 2019 - 2024. All rights reserved.