我正在尝试在我的Android应用程序上使用Spongy Castle。根据这些instructions,我添加了jar文件,然后将此方法称为包含提供程序。
static {
Security.insertProviderAt(new org.spongycastle.jce.provider.BouncyCastleProvider(), 1);
}
但我仍然在这一行得到错误:
KeyStore keyStore = KeyStore.getInstance("SC");
我得到的例外是:
java.security.KeyStoreException: KeyStore SC implementation not found
我已经花了几个小时在这上面,我无法弄清楚我错过了什么。