25 references to CryptoAlgorithms
System.Web (25)
Configuration\MachineKeySection.cs (9)
885
s_oSymAlgoDecryption =
CryptoAlgorithms
.CreateTripleDES();
888
s_oSymAlgoDecryption =
CryptoAlgorithms
.CreateDES();
891
s_oSymAlgoDecryption =
CryptoAlgorithms
.CreateAes();
895
s_oSymAlgoDecryption =
CryptoAlgorithms
.CreateDES();
897
s_oSymAlgoDecryption =
CryptoAlgorithms
.CreateAes();
909
s_oSymAlgoValidation =
CryptoAlgorithms
.CreateDES();
911
s_oSymAlgoValidation =
CryptoAlgorithms
.CreateTripleDES();
915
s_oSymAlgoValidation =
CryptoAlgorithms
.CreateAes();
1296
s_oSymAlgoLegacy =
CryptoAlgorithms
.CreateAes();
Security\Cryptography\CryptoUtil.cs (2)
90
using (SHA256 sha256 =
CryptoAlgorithms
.CreateSHA256()) {
114
using (SHA256 sha256 =
CryptoAlgorithms
.CreateSHA256()) {
Security\Cryptography\MachineKeyCryptoAlgorithmFactory.cs (7)
43
return
CryptoAlgorithms
.CreateAes;
46
return
CryptoAlgorithms
.CreateDES;
49
return
CryptoAlgorithms
.CreateTripleDES;
73
return
CryptoAlgorithms
.CreateHMACSHA1;
76
return
CryptoAlgorithms
.CreateHMACSHA256;
79
return
CryptoAlgorithms
.CreateHMACSHA384;
82
return
CryptoAlgorithms
.CreateHMACSHA512;
Security\Cryptography\SP800_108.cs (1)
55
using (HMACSHA512 hmac =
CryptoAlgorithms
.CreateHMACSHA512(keyDerivationKey.GetKeyMaterial())) {
Security\FormsAuthentication.cs (5)
63
hashAlgorithm =
CryptoAlgorithms
.CreateSHA1();
65
hashAlgorithm =
CryptoAlgorithms
.CreateMD5();
67
hashAlgorithm =
CryptoAlgorithms
.CreateSHA256();
69
hashAlgorithm =
CryptoAlgorithms
.CreateSHA384();
71
hashAlgorithm =
CryptoAlgorithms
.CreateSHA512();
UI\EventValidationStore.cs (1)
114
using (SHA256 hashAlgorithm =
CryptoAlgorithms
.CreateSHA256()) {