use of es.gob.jmulticard.apdu.CommandApdu 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.CommandApdu 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.CommandApdu 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.CommandApdu 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;
}
use of es.gob.jmulticard.apdu.CommandApdu in project jmulticard by ctt-gob-es.
the class PaceConnection method transmit.
/**
* {@inheritDoc}
*/
@Override
public ResponseApdu transmit(final CommandApdu command) throws ApduConnectionException {
// Si es el comando para verificar el PIN se creara una instancia nueva de la clase
// CommandApdu ya que la clase VerifyApduCommand no incluye la contrasena como parte
// la APDU, sino en un attributo aparte
final CommandApdu finalCommand = new CommandApdu(command.getCla(), command.getIns(), command.getP1(), command.getP2(), command.getData(), command.getLe());
// Encriptacion de la APDU para su envio por el canal seguro
CommandApdu protectedApdu = null;
if (DEBUG) {
// $NON-NLS-1$
Logger.getLogger("es.gob.jmulticard").info(HexUtils.hexify(finalCommand.getBytes(), true));
}
try {
protectedApdu = this.sm.wrap(finalCommand);
} catch (final SecureMessagingException e) {
// $NON-NLS-1$
throw new ApduConnectionException("No ha sido posible cifrar un mensaje seguro con el canal PACE: " + e);
}
final ResponseApdu responseApdu = this.subConnection.transmit(protectedApdu);
ResponseApdu decipherApdu = null;
try {
decipherApdu = this.sm.unwrap(responseApdu);
} catch (final SecureMessagingException e1) {
// $NON-NLS-1$
throw new ApduConnectionException("No ha sido posible descifrar un mensaje seguro con el canal PACE: " + e1);
}
if (DEBUG) {
// $NON-NLS-1$
Logger.getLogger("es.gob.jmulticard").info(HexUtils.hexify(decipherApdu.getBytes(), true));
}
if (INVALID_CRYPTO_CHECKSUM.equals(decipherApdu.getStatusWord())) {
throw new InvalidCryptographicChecksum();
}
// a enviar el comando indicando la longitud correcta
if (decipherApdu.getStatusWord().getMsb() == MSB_INCORRECT_LE) {
command.setLe(decipherApdu.getStatusWord().getLsb());
return transmit(command);
}
return decipherApdu;
}
Aggregations