我正在尝试根据来自Californium.Scandium的示例 java 文件在 Android 上设置 DTLS 服务器。最初我遇到了问题,因为密钥库和信任库是 jks 格式并且我没有密钥密码。因此,我使用 Portecle 创建了自己的 PKCS12 密钥库和信任库。
KeyStore keyStore = KeyStore.getInstance("PKCS12");
in = getResources().openRawResource(R.raw.keystore);
keyStore.load(in, KEY_STORE_PASSWORD.toCharArray());
KeyStore trustStore = KeyStore.getInstance("PKCS12");
inTrust = getResources().openRawResource(R.raw.truststore);
trustStore.load(inTrust, TRUST_STORE_PASSWORD.toCharArray());
之后,代码在密钥库加载期间没有抛出任何错误,但在运行应用程序时我得到了这个:
FATAL EXCEPTION: main
Process: com.example.admin.securesend, PID: 3402
java.lang.RuntimeException: Unable to start activity
ComponentInfo{com.example.admin.securesend/com.example.admin.securesend.DTLSServer}: java.lang.IllegalStateException: Keys must be ECDSA capable when support for an ECDHE_ECDSA based cipher suite is configured
编辑:我意识到我的密钥是使用 SHA 而不是 ECDSA 创建的。我对密钥库和密钥不是很熟悉,所以我假设我的密钥库现在是有效的,我只需要为系统生成适当的密钥并将它们植入密钥中。如何使用 ECDSA 创建密钥并将它们传输到我的密钥库?