EMV 标签 91 - 为什么最后 2 个字节"0010"?



EMV Tag 91
在下例中,为什么最后2个字节是"0010"?示例:TLV [910ABCF266A64FF136630010]我最需要帮助谢谢! !

前8个字节是必填的,并且包含密码。

后面可选的1-8字节是私有的。因此,您需要知道您正在使用的支付应用程序(和版本):例如,万事达卡M/Chip,美国运通AEIPS等。

参见6.5.4 External Authenticate in EMV 4.3 Book 3

Tag 0x91发行者身份验证数据万事达卡M/Chip规范。

  • 8个字节是授权响应密码(ARPC))。
  • 2字节是ARPC响应码(RC))

RCM/芯片卡发行者设置的值,并提供额外的卡命令来重置其上的一些计数器。

标签数据解析示例如下:

# Cheef's parser.
# Copyright (C) 2008-2022 Aleksandr Shevelev. https://iso8583.info/
# lib   : "/lib/MasterCard/M_Chip/4/" # M/Chip 4 Card Application Specifications
# tool  : "TLVs"
# stat  : 11 nodes, 0 lookup tables, 100.00% passed (1/1)
TLVs:#"910ABCF266A64FF136630010" # M/Chip 4, Tag + Length + Value (TLV) series
- x91:#"910ABCF266A64FF136630010" # M/Chip 4, Issuer Authentication Data
- tag: "91"
- len: "0A" #  // 10
- val:#"BCF266A64FF136630010" # Issuer Authentication Data.
- ARPC: "BCF266A64FF13663" # Authorization Response Cryptogram
- RC:#"0010" # ARPC Response Code
- B01:#"00"
- n0: "0" # bits 8-5, RFU
- n1: "0" # bits 4-1, PIN try Counter
- B02: "10"
# ___1____ - bit 5, Approve online transaction
# ____0___ - bit 4, Do NOT update PIN Try Counter
# _____0__ - bit 3, Reset go online on next transaction
# ______00 - bits 2-1, Do not update offline counters

相关内容

最新更新