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