9 #import <Foundation/Foundation.h>
67 @property EMV_RESULT_CODE_Types resultCode;
68 @property int encryptionMode;
69 @property int cardType;
70 @property (nonatomic, strong) NSDictionary* unencryptedTags;
71 @property (nonatomic, strong) NSDictionary* encryptedTags;
72 @property (nonatomic, strong) NSDictionary* maskedTags;
73 @property (nonatomic, strong) NSData* KSN;
NSDictionary * encryptedTags
Encrypted EMV Tags. Key = tag name (NSString), Object = tag value (NSData)
Definition: IDTEMVData.h:53
int cardType
0 = Contact, 1 = Contactless
Definition: IDTEMVData.h:51
EMV_RESULT_CODE_Types resultCode
Definition: IDTEMVData.h:49
NSDictionary * maskedTags
Encrypted EMV Tags. Key = tag name (NSString), Object = tag value (NSData)
Definition: IDTEMVData.h:54
NSData * KSN
Key Serial Number for encrypted EMV tags.
Definition: IDTEMVData.h:55
NSDictionary * unencryptedTags
Unencrypted EMV Tags. Key = tag name (NSString), Object = tag value (NSData)
Definition: IDTEMVData.h:52
int encryptionMode
0 = TDES, 1 = AES
Definition: IDTEMVData.h:50
Definition: IDTEMVData.h:16