3 implementations of Protect
System.Web (3)
Security\Cryptography\DataProtectorCryptoService.cs (1)
47
public byte[]
Protect
(byte[] clearData) {
Security\Cryptography\HomogenizingCryptoServiceWrapper.cs (1)
49
public byte[]
Protect
(byte[] clearData) {
Security\Cryptography\NetFXCryptoService.cs (1)
49
public byte[]
Protect
(byte[] clearData) {
6 references to Protect
System.Web (6)
Security\CookieProtection.cs (1)
27
return HttpServerUtility.UrlTokenEncode(cryptoService.
Protect
(buf));
Security\Cryptography\HomogenizingCryptoServiceWrapper.cs (1)
50
return HomogenizeErrors(WrappedCryptoService.
Protect
, clearData);
Security\FormsAuthentication.cs (1)
257
byte[] protectedData = cryptoService.
Protect
(bBlob);
Security\MachineKey.cs (1)
177
return cryptoService.
Protect
(userData);
UI\ObjectStateFormatter.cs (1)
786
byte[] protectedData = cryptoService.
Protect
(ms.ToArray());
UI\Page.cs (1)
2015
protectedData = cryptoService.
Protect
(clearData);