Tomcat SSL不同通过。从密钥库中检索正确的密钥(密钥库密码和密钥密码不同)

时间:2018-12-18 19:24:16

标签: spring-boot ssl tomcat keystore truststore

我有以下代码段

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/container"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal">
    <android.support.v7.widget.RecyclerView
        android:id="@+id/recyclerview"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />
</LinearLayout>

并且由于java.security.UnrecoverableKeyException失败:无法恢复密钥

在yml文件中,出于安全目的,我为密钥库和密钥使用了不同的密码值。

这里UnrecoverableKeyException: Cannot recover key 他们说我们需要“在您的自定义X509KeyManager中实现getPrivateKey(String alias)以考虑到这一点。”但是我对此很陌生。  在我的代码中该怎么做?

0 个答案:

没有答案