Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Next revision Both sides next revision
en:smartcard_api [2018/02/21 09:19]
yjjung [BS2SmartCardData]
en:smartcard_api [2020/06/01 17:12]
kkshin [BS2SmartCardData]
Line 44: Line 44:
 </​WRAP>​ </​WRAP>​
 **2. //size//** \\  **2. //size//** \\ 
-The size of card template. \\ \\ +The size of card template. This field needs to be filled with a fixed value as '​32'​.\\ \\ 
 **3. //data//** \\  **3. //data//** \\ 
 The data of card template. \\  The data of card template. \\ 
-In case of Secure Credential Card(SCC), users need to have card information which includes Card ID(24byte), issueCount(4byte) and TimeStamp(4byte). \\+In case of Secure Credential Card(SCC), users need to have card information which includes Card ID(24byte), issueCount(4byte) and TimeStamp(4byte). ​Also, cardObjs array of BS2UserBlob structure should be filled for SCC cards and the user should be updated after SCC issuing.  ​\\
 ==== BS2SmartCardHeader ==== ==== BS2SmartCardHeader ====
 <code cpp> <code cpp>
Line 62: Line 62:
 </​code>​ </​code>​
 **1. //​hdrCRC//​** \\  **1. //​hdrCRC//​** \\ 
-Value of card header checksum. \\ \\ +Value of card header checksum. ​(cardCRC - reserved) ​\\ \\ 
 **2. //​cardCRC//​** \\  **2. //​cardCRC//​** \\ 
-Value of card data checksum. \\ \\ +Value of card data checksum. ​(BS2SmartCardHeader.cardType - BS2SmartCardData.accessOnData) ​\\ \\ 
 **3. //​cardType//​** \\  **3. //​cardType//​** \\ 
 Code of card types. \\  Code of card types. \\ 
 <WRAP group 50%> <WRAP group 50%>
 ^Value ​ ^Description ​ ^ ^Value ​ ^Description ​ ^
-|0 |Unknown card  | +|0x00 |Unknown card  | 
-|1 |CSN card  | +|0x01 |CSN card  | 
-|2 |Secure card  | +|0x02 |Secure card  | 
-|3 |Access card  | +|0x03 |Access card  | 
-||Wiegand card  |+|0x0A |Wiegand card  ​
 +|0x0B |Config ​card ​ |
 </​WRAP>​ </​WRAP>​
 **4. //​numOfTemplate//​** \\  **4. //​numOfTemplate//​** \\ 
Line 125: Line 126:
 Smart card header. \\ \\  Smart card header. \\ \\ 
 **2. //​cardID//​** \\  **2. //​cardID//​** \\ 
-Card ID that will be used on the card. Access on Cards will need to use the 32 byte array for the card ID. Secure Credential Cards will need to use a 24 byte array for the card ID. \\ \\ +Card ID that will be used on the card. \\ 
 +Access on Cards will need to use the 32 byte array for the card ID. \\ 
 +Secure Credential Cards will need to use a 24 byte array for the card ID. \\ 
 +In case of Secure Credential Card(SCC), users need to have card information which includes Card ID(24byte), issueCount(4byte) and TimeStamp(4byte). \\ 
 +Also, cardObjs array of BS2UserBlob structure should be filled for SCC cards and the user should be updated after SCC issuing. \\ \\
 **3. //​credentials//​** \\  **3. //​credentials//​** \\ 
 Authentication data area where the PIN or fingerprint template is stored. \\ \\  Authentication data area where the PIN or fingerprint template is stored. \\ \\ 
Line 133: Line 138:
 ==== BS2Card ==== ==== BS2Card ====
 <code cpp> <code cpp>
-typedef struct +typedef struct {
-{+
     uint8_t isSmartCard;​     uint8_t isSmartCard;​
-    union +    union {
-    ​{+
         BS2CSNCard card;         BS2CSNCard card;
         BS2SmartCardData smartCard;         BS2SmartCardData smartCard;