Compute test customer key

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

Syntax

C#
protected byte[] ComputeTestCustomerKeyFromKdp(
	IList<byte> termKdp,
	IList<byte> cardKdp
)
Visual Basic
Protected Function ComputeTestCustomerKeyFromKdp ( 
	termKdp As IList(Of Byte),
	cardKdp As IList(Of Byte)
) As Byte()
Visual C++
protected:
array<unsigned char>^ ComputeTestCustomerKeyFromKdp(
	IList<unsigned char>^ termKdp, 
	IList<unsigned char>^ cardKdp
)
F#
member ComputeTestCustomerKeyFromKdp : 
        termKdp : IList<byte> * 
        cardKdp : IList<byte> -> byte[] 

Parameters

termKdp
Type: System.Collections.Generic..::..IList<(Of <(<'Byte>)>)>
Terminal part of key derivation parameter KDP
cardKdp
Type: System.Collections.Generic..::..IList<(Of <(<'Byte>)>)>
Card part of key derivation parameter KDP (may be null)

Return Value

Type: array<Byte>[]()[][]
Customer (test) key derived from KDP.

Remarks

Computed key is only valid in virtual/emulated cards

See Also