use of es.gob.jmulticard.card.dnie.DniePrivateKeyReference in project jmulticard by ctt-gob-es.
the class Ceres430KeyStoreImpl method engineGetKey.
/**
* {@inheritDoc}
*/
@Override
public Key engineGetKey(final String alias, final char[] password) {
if (!engineContainsAlias(alias)) {
return null;
}
if (password != null) {
// Establecemos el PasswordCallback
final PasswordCallback pwc = new CachePasswordCallback(password);
this.cryptoCard.setPasswordCallback(pwc);
}
final PrivateKeyReference pkRef = this.cryptoCard.getPrivateKey(alias);
if (!(pkRef instanceof DniePrivateKeyReference)) {
throw new ProviderException(// $NON-NLS-1$ //$NON-NLS-2$
"La clave obtenida de la tarjeta no es del tipo esperado, se ha obtenido: " + (pkRef != null ? pkRef.getClass().getName() : "null"));
}
return new DniePrivateKey((DniePrivateKeyReference) pkRef);
}
use of es.gob.jmulticard.card.dnie.DniePrivateKeyReference in project jmulticard by ctt-gob-es.
the class DnieKeyStoreImpl method engineGetKey.
/**
* {@inheritDoc}
*/
@Override
public Key engineGetKey(final String alias, final char[] password) {
if (!engineContainsAlias(alias)) {
return null;
}
if (password != null) {
// Establecemos el PasswordCallback
final PasswordCallback pwc = new CachePasswordCallback(password);
this.cryptoCard.setPasswordCallback(pwc);
}
final PrivateKeyReference pkRef = this.cryptoCard.getPrivateKey(alias);
if (!(pkRef instanceof DniePrivateKeyReference)) {
throw new ProviderException(// $NON-NLS-1$ //$NON-NLS-2$
"La clave obtenida de la tarjeta no es del tipo esperado, se ha obtenido: " + (pkRef != null ? pkRef.getClass().getName() : "null"));
}
return new DniePrivateKey((DniePrivateKeyReference) pkRef);
}
Aggregations