問題ないように見える SSL 証明書 (サーバーのルートから始まる証明書チェーン) があります。Windowsで証明書を開き、Windowsウィザードを使用してインポートすることもできます。
しかし、次のコマンド (BouncyCastle を使用) を使用してキーストアに変換しようとすると:
keytool -importcert -v -trustcacerts -file "test.crt" -alias ca -keystore "test.bks" -provider org.bouncycastle.jce.provider.BouncyCastleProvider -providerpath "bcprov-ext-jdk15on-1.46.jar" -storetype BKS -storepass testtest
以下のエラーが表示されます。
keytool error: java.lang.Exception: Input not an X.509 certificate
java.lang.Exception: Input not an X.509 certificate
at sun.security.tools.KeyTool.addTrustedCert(Unknown Source)
at sun.security.tools.KeyTool.doCommands(Unknown Source)
at sun.security.tools.KeyTool.run(Unknown Source)
at sun.security.tools.KeyTool.main(Unknown Source)
https を介して REST ベースの API を呼び出す必要がある Android アプリケーションを開発しています。
証明書を検証できる Web ベースのツール (またはその他) はありますか?