There are my current providers:
0 - Provider name: SUN 1 - Provider namer: SunRsaSign 2 - Provider name: SunEC
...
9 - Provider name: SunPKCS11-CartaoCidadao
The ninth provider is the one that I'm trying to use, which uses the pkcs11 library.
Provider prov = Security.getProvider("SunPKCS11-CartaoCidadao");
keyStore = KeyStore.getInstance("PKCS11", prov );
Using the info method I can see it's using the library:
System.out.println(prov.getInfo());
SunPKCS11-CartaoCidadao using library /usr/local/lib/libpteidpkcs11.so
Yet, while I'm trying to get a key instance, it tells me there's no PKCS11 for that provider, which it should.
KeyStore ks = KeyStore.getInstance("PKCS11","SunPKCS11-CartaoCidadao");
keyStore.load( null, null );
java.security.KeyStoreException: PKCS11 not found
Caused by: java.security.NoSuchAlgorithmException: no such algorithm: PKCS11 for provider SunPKCS11-CartaoCidadao
Anyone have any idea how to solve this issue?
The second parameter should be of type
Provider
.Use the following: