11 references to CreateHashAlgorithm
System.IdentityModel (11)
System\IdentityModel\CryptoHelper.cs (2)
413return CryptoHelper.CreateHashAlgorithm(SecurityAlgorithms.Sha1Digest); 418return CryptoHelper.CreateHashAlgorithm(SecurityAlgorithms.Sha256Digest);
System\IdentityModel\EnvelopedSignatureWriter.cs (1)
92_hashAlgorithm = CryptoHelper.CreateHashAlgorithm(_signingCreds.DigestAlgorithm);
System\IdentityModel\RsaEncryptionCookieTransform.cs (3)
121using (HashAlgorithm algorithm = CryptoHelper.CreateHashAlgorithm(value)) 165using (HashAlgorithm hash = CryptoHelper.CreateHashAlgorithm(_hashName)) 284using (HashAlgorithm hash = CryptoHelper.CreateHashAlgorithm(_hashName))
System\IdentityModel\RsaSignatureCookieTransform.cs (3)
77using (HashAlgorithm algorithm = CryptoHelper.CreateHashAlgorithm(value)) 190using (HashAlgorithm hash = CryptoHelper.CreateHashAlgorithm(HashName)) 263using (HashAlgorithm hash = CryptoHelper.CreateHashAlgorithm(HashName))
System\IdentityModel\SignatureResourcePool.cs (1)
67this.hashAlgorithm = CryptoHelper.CreateHashAlgorithm( algorithm );
System\IdentityModel\Tokens\SamlAssertion.cs (1)
599using (HashAlgorithm hash = CryptoHelper.CreateHashAlgorithm(this.signingCredentials.DigestAlgorithm))