/**************************************************************************** * Copyright (C) 2012 ecsec GmbH. * All rights reserved. * Contact: ecsec GmbH (info@ecsec.de) * * This file is part of the Open eCard App. * * GNU General Public License Usage * This file may be used under the terms of the GNU General Public * License version 3.0 as published by the Free Software Foundation * and appearing in the file LICENSE.GPL included in the packaging of * this file. Please review the following information to ensure the * GNU General Public License version 3.0 requirements will be met: * http://www.gnu.org/copyleft/gpl.html. * * Other Usage * Alternatively, this file may be used in accordance with the terms * and conditions contained in a signed written agreement between * you and ecsec GmbH. * ***************************************************************************/ package org.openecard.sal.protocol.eac.anytype; import iso.std.iso_iec._24727.tech.schema.DIDAuthenticationDataType; import org.openecard.common.anytype.AuthDataMap; import org.openecard.common.anytype.AuthDataResponse; import org.openecard.common.util.ByteUtils; /** * Implements the PACEOutputType data structure. * See BSI-TR-03112, version 1.1.2, part 7, section 4.3.5. * * @author Tobias Wich <tobias.wich@ecsec.de> */ public class PACEOutputType { public static final String RETRY_COUNTER = "RetryCounter"; public static final String EF_CARD_ACCESS = "EFCardAccess"; public static final String CURRENT_CAR = "CARcurr"; public static final String PREVIOUS_CAR = "CARprev"; public static final String ID_PICC = "IDPICC"; // private final AuthDataMap authMap; private byte[] efCardAccess; private byte[] currentCAR; private byte[] previousCAR; private byte[] idpicc; private byte retryCounter; /** * Creates a new PACEOutputType. * * @param authMap AuthDataMap */ protected PACEOutputType(AuthDataMap authMap) { this.authMap = authMap; } /** * Sets the content of the file EF.CardAccess. * * @param efCardAccess Content of the file EF.CardAccess */ public void setEFCardAccess(byte[] efCardAccess) { this.efCardAccess = efCardAccess; } /** * Sets the current CAR. * * @param car current CAR */ public void setCurrentCAR(byte[] car) { this.currentCAR = car; } /** * Sets the previous CAR. * * @param car Previous CAR */ public void setPreviousCAR(byte[] car) { this.previousCAR = car; } /** * Sets the IDPICC. * * @param idpicc IDPICC */ public void setIDPICC(byte[] idpicc) { this.idpicc = idpicc; } /** * Sets the retry counter. * * @param counter Retry counter */ public void setRetryCounter(byte counter) { this.retryCounter = counter; } /** * Returns the DIDAuthenticationDataType. * * @return DIDAuthenticationDataType */ public DIDAuthenticationDataType getAuthDataType() { AuthDataResponse authResponse = authMap.createResponse(new iso.std.iso_iec._24727.tech.schema.PACEOutputType()); authResponse.addElement(RETRY_COUNTER, String.valueOf(retryCounter)); authResponse.addElement(EF_CARD_ACCESS, ByteUtils.toHexString(efCardAccess)); if (currentCAR != null) { authResponse.addElement(CURRENT_CAR, ByteUtils.toHexString(currentCAR)); } if (previousCAR != null) { authResponse.addElement(PREVIOUS_CAR, ByteUtils.toHexString(previousCAR)); } if (idpicc != null) { authResponse.addElement(ID_PICC, ByteUtils.toHexString(idpicc)); } return authResponse.getResponse(); } }