9 references to CryptoServiceOptions
System.Web (9)
Security\Cryptography\AspNetCryptoServiceProvider.cs (5)
54public ICryptoService GetCryptoService(Purpose purpose, CryptoServiceOptions options = CryptoServiceOptions.None) { 56if (_isDataProtectorEnabled && options == CryptoServiceOptions.None) { 74private NetFXCryptoService GetNetFXCryptoService(Purpose purpose, CryptoServiceOptions options) { 81return new NetFXCryptoService(_cryptoAlgorithmFactory, encryptionKey, validationKey, predictableIV: (options == CryptoServiceOptions.CacheableOutput));
Security\Cryptography\ICryptoServiceProvider.cs (2)
15ICryptoService GetCryptoService(Purpose purpose, CryptoServiceOptions options = CryptoServiceOptions.None);
UI\Page.cs (2)
1849ICryptoService cryptoService = AspNetCryptoServiceProvider.Instance.GetCryptoService(purpose, CryptoServiceOptions.CacheableOutput); 2014ICryptoService cryptoService = AspNetCryptoServiceProvider.Instance.GetCryptoService(purpose, CryptoServiceOptions.CacheableOutput);