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