DataProtector Class
Provides the base class for data protectors.
System.Security.Cryptography::DataProtector
System.Security.Cryptography::DpapiDataProtector
Namespace: System.Security.Cryptography
Assembly: System.Security (in System.Security.dll)
The DataProtector type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | DataProtector | Creates a new instance of the DataProtector class by using the provided application name, primary purpose, and specific purposes. |
| Name | Description | |
|---|---|---|
![]() | ApplicationName | Gets the name of the application. |
![]() | PrependHashedPurposeToPlaintext | Specifies whether the hash is prepended to the text array before encryption. |
![]() | PrimaryPurpose | Gets the primary purpose for the protected data. |
![]() | SpecificPurposes | Gets the specific purposes for the protected data. |
| Name | Description | |
|---|---|---|
![]() ![]() | Create | Creates an instance of a data protector implementation by using the specified class name of the data protector, the application name, the primary purpose, and the specific purposes. |
![]() | Equals(Object) | Determines whether the specified object is equal to the current object. (Inherited from Object.) |
![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
![]() | GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
![]() | GetHashedPurpose | Creates a hash of the property values specified by the constructor. |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | IsReprotectRequired | Determines if re-encryption is required for the specified encrypted data. |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | Protect | Protects the specified user data. |
![]() | ProviderProtect | Specifies the delegate method in the derived class that the Protect method in the base class calls back into. |
![]() | ProviderUnprotect | Specifies the delegate method in the derived class that the Unprotect method in the base class calls back into. |
![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
![]() | Unprotect | Unprotects the specified protected data. |
This class protects stored data from viewing and tampering. The access to the protected data is obtained by creating an instance of this class and using the exact purpose strings that were used to protect the data. The caller does not need a key to either protect or unprotect the data. The key is provided by the encryption algorithm.
Derived classes must override the ProviderProtect and Unprotect methods, which the DataProtector base class calls back into. They must also override the IsReprotectRequired method, which can always return true with a potential small loss of efficiency when applications refresh their database of stored cipher text. Derived classes should provide a constructor that calls the base class constructor, which sets the ApplicationName, SpecificPurposes, and PrimaryPurpose properties.
The following example demonstrates how to create a data protector that uses a protection class with an option for extra entropy. By default, the DataProtector class prepends the hash of the purpose properties to the data to be encrypted. You can turn that functionality off and use the hashed purpose as extra entropy when calling a data protector with an extra entropy option.
The following example demonstrates a simple data protector that uses the PrependHashedPurposeToPlaintext functionality of the DataProtector class.
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
.gif?cs-save-lang=1&cs-lang=cpp)
.gif?cs-save-lang=1&cs-lang=cpp)
.gif?cs-save-lang=1&cs-lang=cpp)
.gif?cs-save-lang=1&cs-lang=cpp)