Set required atr history bytes (with mask) to check for. Set to null (default) to disable check for atr history bytes. Each history byte is checked by XOR specified history byte with real history byte and finally AND (mask) it with mask byte. If result for each byte is 0, then the atr history matches.

Namespace: BasicCard.BasicCards
Assembly: BasicCard (in BasicCard.dll) Version: 2.5.2.0 (2.5.2.0)

Syntax

C#
public void SetAtrHistory(
	byte[] history,
	byte[] mask
)
Visual Basic
Public Sub SetAtrHistory ( 
	history As Byte(),
	mask As Byte()
)
Visual C++
public:
void SetAtrHistory(
	array<unsigned char>^ history, 
	array<unsigned char>^ mask
)
F#
member SetAtrHistory : 
        history : byte[] * 
        mask : byte[] -> unit 

Parameters

history
Type: array<System..::..Byte>[]()[][]
History bytes or null.
mask
Type: array<System..::..Byte>[]()[][]
History mask.

See Also