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