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