8 references to ProtectedData
System.IdentityModel (4)
System\IdentityModel\ProtectedDataCookieTransform.cs (4)
11
/// Provides cookie integrity and confidentiality using <see cref="
ProtectedData
"/>.
14
/// Due to the nature of <see cref="
ProtectedData
"/>, cookies
58
decoded =
ProtectedData
.Unprotect( encoded, this.entropy, DataProtectionScope.CurrentUser );
91
encoded =
ProtectedData
.Protect( value, this.entropy, DataProtectionScope.CurrentUser );
System.Security (2)
system\security\cryptography\dpapidataprotector.cs (2)
40
return
ProtectedData
.Protect(userData, GetHashedPurpose(), Scope);
52
return
ProtectedData
.Unprotect(encryptedData, GetHashedPurpose(), Scope);
System.ServiceModel (2)
System\ServiceModel\Security\DataProtectionSecurityStateEncoder.cs (2)
71
return
ProtectedData
.Unprotect(data, this.entropy, (this.useCurrentUserProtectionScope) ? DataProtectionScope.CurrentUser : DataProtectionScope.LocalMachine);
84
return
ProtectedData
.Protect(data, this.entropy, (this.useCurrentUserProtectionScope) ? DataProtectionScope.CurrentUser : DataProtectionScope.LocalMachine);