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 58decoded = ProtectedData.Unprotect( encoded, this.entropy, DataProtectionScope.CurrentUser ); 91encoded = ProtectedData.Protect( value, this.entropy, DataProtectionScope.CurrentUser );
System.Security (2)
system\security\cryptography\dpapidataprotector.cs (2)
40return ProtectedData.Protect(userData, GetHashedPurpose(), Scope); 52return ProtectedData.Unprotect(encryptedData, GetHashedPurpose(), Scope);
System.ServiceModel (2)
System\ServiceModel\Security\DataProtectionSecurityStateEncoder.cs (2)
71return ProtectedData.Unprotect(data, this.entropy, (this.useCurrentUserProtectionScope) ? DataProtectionScope.CurrentUser : DataProtectionScope.LocalMachine); 84return ProtectedData.Protect(data, this.entropy, (this.useCurrentUserProtectionScope) ? DataProtectionScope.CurrentUser : DataProtectionScope.LocalMachine);