001/*
002 * jPOS Project [http://jpos.org]
003 * Copyright (C) 2000-2026 jPOS Software SRL
004 *
005 * This program is free software: you can redistribute it and/or modify
006 * it under the terms of the GNU Affero General Public License as
007 * published by the Free Software Foundation, either version 3 of the
008 * License, or (at your option) any later version.
009 *
010 * This program is distributed in the hope that it will be useful,
011 * but WITHOUT ANY WARRANTY; without even the implied warranty of
012 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
013 * GNU Affero General Public License for more details.
014 *
015 * You should have received a copy of the GNU Affero General Public License
016 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
017 */
018
019package org.jpos.security;
020
021/**
022 * Indicate method for generation of the ARPC used for issuer authentication
023 * <br>
024 * Described in EMV v4.2 Book 2 section 8.2
025 * @author Robert Demski
026 * @version $Revision$ $Date$
027 */
028public enum ARPCMethod {
029
030   /**
031    * Method for the generation of an 8-byte ARPC consists of applying
032    * the Triple-DES algorithm:
033    * <ul>
034    *   <li>the 8-byte ARQC
035    *   <li>the 2-byte Authorisation Response Code (ARC)
036    * </ul>
037    */
038   METHOD_1,
039
040   /**
041    * Method For the generation of a 4-byte ARPC consists of applying
042    * the MAC algorithm:
043    * <ul>
044    *   <li>the 4-byte ARQC
045    *   <li>the 4-byte binary Card Status Update (CSU)
046    *   <li>the 0-8 byte binary Proprietary Authentication Data
047    * </ul>
048    */
049   METHOD_2
050
051}