MachineKey Class

Definition

Provides a way to encrypt or hash data (or both) by using the same algorithms and key values that are used for ASP.NET forms authentication and view state.

public ref class MachineKey abstract sealed
public static class MachineKey
type MachineKey = class
Public Class MachineKey
Inheritance
MachineKey

Remarks

The MachineKey class provides methods that expose the hashing and encryption logic that ASP.NET provides. For information about which encryption and hashing algorithms ASP.NET uses, and the key values that it uses with them, see machineKey Element (ASP.NET Settings Schema).

Warning

The MachineKey APIs should only be used in an ASP.NET app. Behavior of the MachineKey APIs outside the context of an ASP.NET application is undefined

Methods

Decode(String, MachineKeyProtection)
Obsolete.

Decodes and/or validates data that has been encrypted or provided with a hash-based message authentication code (HMAC).

Encode(Byte[], MachineKeyProtection)
Obsolete.

Encrypts data and/or appends a hash-based message authentication code (HMAC).

Protect(Byte[], String[])

Protects the specified data by encrypting or signing it.

Unprotect(Byte[], String[])

Unprotects the specified data, which was protected by the Protect(Byte[], String[]) method.

Applies to