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