3 implementations of Unprotect
System.Web (3)
Security\Cryptography\DataProtectorCryptoService.cs (1)
51
public byte[]
Unprotect
(byte[] protectedData) {
Security\Cryptography\HomogenizingCryptoServiceWrapper.cs (1)
53
public byte[]
Unprotect
(byte[] protectedData) {
Security\Cryptography\NetFXCryptoService.cs (1)
113
public byte[]
Unprotect
(byte[] protectedData) {
6 references to Unprotect
System.Web (6)
Security\CookieProtection.cs (1)
75
return cryptoService.
Unprotect
(buf);
Security\Cryptography\HomogenizingCryptoServiceWrapper.cs (1)
54
return HomogenizeErrors(WrappedCryptoService.
Unprotect
, protectedData);
Security\FormsAuthentication.cs (1)
156
byte[] unprotectedData = cryptoService.
Unprotect
(bBlob);
Security\MachineKey.cs (1)
211
return cryptoService.
Unprotect
(protectedData);
UI\ObjectStateFormatter.cs (1)
381
byte[] clearData = cryptoService.
Unprotect
(inputBytes);
UI\Page.cs (1)
1850
clearData = cryptoService.
Unprotect
(protectedData);