Set encryption/decryption option.

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

Syntax

C#
void SetCryptOptions(
	bool encryptCommand,
	bool decryptResponse
)
Visual Basic
Sub SetCryptOptions ( 
	encryptCommand As Boolean,
	decryptResponse As Boolean
)
Visual C++
void SetCryptOptions(
	bool encryptCommand, 
	bool decryptResponse
)
F#
abstract SetCryptOptions : 
        encryptCommand : bool * 
        decryptResponse : bool -> unit 

Parameters

encryptCommand
Type: System..::..Boolean
If true command is encrypted, otherwise command is left unchanged. Default is true.
decryptResponse
Type: System..::..Boolean
If true response is decrypted, otherwise response is left unchanged. Default is true.

See Also