use of es.gob.jmulticard.apdu.ResponseApdu in project jmulticard by ctt-gob-es.
the class AndroidCCIDConnection method transmit.
/**
* {@inheritDoc}
*/
@Override
public ResponseApdu transmit(final CommandApdu command) throws ApduConnectionException {
if (!isOpen()) {
// $NON-NLS-1$
throw new UnavailableReaderException("No existe dispositivo USB asignado a la conexion");
}
try {
if (!this.ccidReader.isCardActive()) {
if (!this.ccidReader.isCardPresent()) {
// No hay tarjeta en el lector
throw new CardNotPresentException();
}
// Hay tarjeta, pero no esta activa
// $NON-NLS-1$ //$NON-NLS-2$
Log.i("es.gob.jmulticard", "La tarjeta del lector no esta activa, se reiniciara");
this.reset();
}
if (DEBUG) {
// $NON-NLS-1$ //$NON-NLS-2$
Log.d("es.gob.jmulticard", "APDU Enviada:\n" + HexUtils.hexify(command.getBytes(), true));
}
final ResponseApdu response;
try {
response = new ResponseApdu(this.ccidReader.transmit(command.getBytes()));
if (DEBUG) {
// $NON-NLS-1$ //$NON-NLS-2$
Log.d("es.gob.jmulticard", "APDU Recibida:\n" + HexUtils.hexify(response.getBytes(), true));
}
// Solicitamos el resultado de la operacion si es necesario
if (response.getStatusWord().getMsb() == TAG_RESPONSE_PENDING) {
// Si ya se ha devuelto parte de los datos, los concatenamos al resultado
if (response.getData().length > 0) {
final byte[] data = response.getData();
final byte[] additionalData = transmit(new GetResponseApduCommand((byte) 0x00, response.getStatusWord().getLsb())).getBytes();
final byte[] fullResponse = new byte[data.length + additionalData.length];
System.arraycopy(data, 0, fullResponse, 0, data.length);
System.arraycopy(additionalData, 0, fullResponse, data.length, additionalData.length);
return new ResponseApdu(fullResponse);
}
return transmit(new GetResponseApduCommand((byte) 0x00, response.getStatusWord().getLsb()));
} else // (de eso se encargara la clase de conexion con canal seguro)
if (response.getStatusWord().getMsb() == TAG_RESPONSE_INVALID_LENGTH && command.getCla() == (byte) 0x00) {
command.setLe(response.getStatusWord().getLsb());
return transmit(command);
}
return response;
} catch (final UsbDeviceException e) {
// $NON-NLS-1$
throw new ApduConnectionException("Error enviando APDU: " + e, e);
}
} catch (final NotAvailableUSBDeviceException e) {
// $NON-NLS-1$
throw new UnavailableReaderException("No se puede acceder al dispositivo USB: " + e, e);
}
}
use of es.gob.jmulticard.apdu.ResponseApdu in project jmulticard by ctt-gob-es.
the class Iso7816EightCard method verifyCertificate.
/**
* Verifica un certificado en base a una clave pública cargada anteriormente
* y que deberá ser la del certificado a partir del cual se generó el
* certificado que ahora se valida.
* @param cert Certificado que se desea comprobar.
* @throws SecureChannelException Cuando el certificado no es correcto u ocurre algún error en la validación.
* @throws ApduConnectionException Cuando ocurre un error en la comunicación con la tarjeta.
*/
public void verifyCertificate(final byte[] cert) throws ApduConnectionException {
final CommandApdu apdu = new PsoVerifyCertificateApduCommand((byte) 0x00, cert);
final ResponseApdu res = this.getConnection().transmit(apdu);
if (!res.isOk()) {
throw new SecureChannelException(// $NON-NLS-1$
"Error en la verificacion del certificado. Se obtuvo el error: " + HexUtils.hexify(res.getBytes(), true));
}
}
use of es.gob.jmulticard.apdu.ResponseApdu in project jmulticard by ctt-gob-es.
the class Iso7816FourCard method readBinary.
/**
* Lee un contenido binario del fichero actualmente seleccionado.
* @param msbOffset Octeto más significativo del desplazamiento
* (<i>offset</i>) hasta el punto de inicio de la lectura desde
* el comienzo del fichero.
* @param lsbOffset Octeto menos significativo del desplazamiento (<i>offset</i>)
* hasta el punto de inicio de la lectura desde el comienzo del
* fichero.
* @param readLength Longitud de los datos a leer (en octetos).
* @return APDU de respuesta.
* @throws ApduConnectionException Si hay problemas en el envío de la APDU.
* @throws RequiredSecurityStateNotSatisfiedException Si la lectura requiere el cumplimiento
* de una condición de seguridad y esta no se ha satisfecho.
* @throws OffsetOutsideEfException Si el desplazamiento indicado o el tamaño indicados
* para la lectura caen fuera de los límites del fichero.
*/
private ResponseApdu readBinary(final byte msbOffset, final byte lsbOffset, final byte readLength) throws ApduConnectionException, RequiredSecurityStateNotSatisfiedException, OffsetOutsideEfException {
final CommandApdu apdu = new ReadBinaryApduCommand(getCla(), msbOffset, lsbOffset, readLength);
final ResponseApdu res = getConnection().transmit(apdu);
if (res.isOk()) {
return res;
}
if (OFFSET_OUTSIDE_EF.equals(res.getStatusWord())) {
throw new OffsetOutsideEfException(OFFSET_OUTSIDE_EF, apdu);
}
if (UNSATISFIED_SECURITY_STATE.equals(res.getStatusWord())) {
throw new RequiredSecurityStateNotSatisfiedException(res.getStatusWord());
}
if (EOF_REACHED.equals(res.getStatusWord())) {
// $NON-NLS-1$
LOGGER.warning("Se ha alcanzado el final de fichero antes de poder leer los octetos indicados");
return res;
}
// $NON-NLS-1$
throw new ApduConnectionException("Respuesta invalida en la lectura de binario con el codigo: " + res.getStatusWord());
}
use of es.gob.jmulticard.apdu.ResponseApdu in project jmulticard by ctt-gob-es.
the class Iso7816FourCard method selectFileById.
/**
* Selecciona un fichero (DF o EF).
* @param id Identificador del fichero a seleccionar.
* @return Tamaño del fichero seleccionado.
* @throws ApduConnectionException Si hay problemas en el envío de la APDU.
* @throws Iso7816FourCardException Si falla la selección de fichero.
*/
public int selectFileById(final byte[] id) throws ApduConnectionException, Iso7816FourCardException {
final CommandApdu selectCommand = new SelectFileByIdApduCommand(getCla(), id);
final ResponseApdu res = getConnection().transmit(selectCommand);
if (HexUtils.arrayEquals(res.getBytes(), new byte[] { (byte) 0x6a, (byte) 0x82 })) {
throw new FileNotFoundException(id);
}
final SelectFileApduResponse response = new SelectFileApduResponse(res);
if (response.isOk()) {
return response.getFileLength();
}
final StatusWord sw = response.getStatusWord();
if (sw.equals(new StatusWord((byte) 0x6A, (byte) 0x82))) {
throw new FileNotFoundException(id);
}
throw new Iso7816FourCardException(sw, selectCommand);
}
use of es.gob.jmulticard.apdu.ResponseApdu in project jmulticard by ctt-gob-es.
the class Iso7816FourCard method readAllRecords.
/**
* Lee todos los registros del binario actualmente seleccionado.
* @return Lista de registros leidos del binario actualmente seleccionado.
* @throws ApduConnectionException Si hay problemas en el envío de la APDU.
* @throws Iso7816FourCardException SI ocurren problemas durante la lectura de los registros.
*/
public List<byte[]> readAllRecords() throws ApduConnectionException, Iso7816FourCardException {
final List<byte[]> ret = new ArrayList<>();
StatusWord readedResponseSw;
final CommandApdu readRecordApduCommand = new ReadRecordApduCommand(getCla());
do {
final ResponseApdu readedResponse = sendArbitraryApdu(readRecordApduCommand);
readedResponseSw = readedResponse.getStatusWord();
if (!readedResponse.isOk() && !ReadRecordApduCommand.RECORD_NOT_FOUND.equals(readedResponseSw)) {
throw new Iso7816FourCardException(// $NON-NLS-1$
"Error en la lectura de registro", // $NON-NLS-1$
readedResponseSw);
}
ret.add(readedResponse.getData());
} while (!ReadRecordApduCommand.RECORD_NOT_FOUND.equals(readedResponseSw));
return ret;
}
Aggregations