MachineKeyProtection Enum

Definition

Specifies values that indicates whether data should be encrypted or decrypted, whether a hash-based message authentication code (HMAC) should be appended or validated, or both.

public enum class MachineKeyProtection
public enum MachineKeyProtection
type MachineKeyProtection = 
Public Enum MachineKeyProtection
Inheritance
MachineKeyProtection

Fields

All 0

Specifies that a hash-based message authentication code (HMAC) should be appended to the data and that the data should be encrypted (for the Encode(Byte[], MachineKeyProtection) method) or that the data should be both decrypted and validated (for the Decode(String, MachineKeyProtection) method).

Encryption 1

Specifies that the data should be encrypted (for the Encode(Byte[], MachineKeyProtection) method) or decrypted (for the Decode(String, MachineKeyProtection) method).

Validation 2

Specifies that a hash-based message authentication code (HMAC) should be appended to the data (for the Encode(Byte[], MachineKeyProtection) method) or validated (for the Decode(String, MachineKeyProtection) method).

Applies to