【发布时间】:2016-01-05 23:16:27
【问题描述】:
在我使用的 Windows 中加载证书:
KeyStore keystore = KeyStore.getInstance("WINDOWS-ROOT"); //and WINDOWS-MY
keystore.load(null, null);
// here operations to make the list
在安卓中:
KeyStore keystore = KeyStore.getInstance("AndroidCAStore");
keystore.load(null, null);
// here operations to make the list
如何在 linux 中做到这一点?如果无法在 Linux 中使用此 API 完成,我该如何以其他方式完成?
【问题讨论】:
标签: java linux certificate ssl-certificate keystore