Call BasicCard START ENCRYPTION command with key derivation parameter (KDP)

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

Syntax

C#
protected virtual void CmdStartKdpEncryption(
	CryptAlgo algorithm,
	byte[] termKdp,
	bool withCardKdp
)
Visual Basic
Protected Overridable Sub CmdStartKdpEncryption ( 
	algorithm As CryptAlgo,
	termKdp As Byte(),
	withCardKdp As Boolean
)
Visual C++
protected:
virtual void CmdStartKdpEncryption(
	CryptAlgo algorithm, 
	array<unsigned char>^ termKdp, 
	bool withCardKdp
)
F#
abstract CmdStartKdpEncryption : 
        algorithm : CryptAlgo * 
        termKdp : byte[] * 
        withCardKdp : bool -> unit 
override CmdStartKdpEncryption : 
        algorithm : CryptAlgo * 
        termKdp : byte[] * 
        withCardKdp : bool -> unit 

Parameters

algorithm
Type: BasicCard.BasicCards..::..CryptAlgo
encryption algorithm
termKdp
Type: array<System..::..Byte>[]()[][]
Terminal known part of KDP
withCardKdp
Type: System..::..Boolean
True if card program includes set another part of KDP

See Also