MachineKeyProtection Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Fields
Name | Value | Description |
---|---|---|
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). |