9 instantiations of HMACSHA256
System.Data (3)
fx\src\data\System\Data\SqlClient\SqlAeadAes256CbcHmac256Algorithm.cs (2)
222using (HMACSHA256 hmac = new HMACSHA256(_columnEncryptionKey.MACKey)) { 389using (HMACSHA256 hmac = new HMACSHA256(_columnEncryptionKey.MACKey)) {
fx\src\data\System\Data\SqlClient\SqlSecurityUtility.cs (1)
36using (HMACSHA256 hmac = new HMACSHA256(key)) {
System.IdentityModel (2)
System\IdentityModel\CryptoHelper.cs (2)
564return new HMACSHA256(key); 1219return new HMACSHA256();
System.ServiceModel (3)
System\ServiceModel\Channels\PeerSecurityHelpers.cs (1)
58using (HMACSHA256 algo = new HMACSHA256(pwdBytes))
System\ServiceModel\Channels\PeerSecurityManager.cs (1)
178using (HMACSHA256 algo = new HMACSHA256())
System\ServiceModel\Security\Tokens\WindowsUserNameCachingSecurityTokenAuthenticator.cs (1)
130using (HMACSHA256 hmac = new HMACSHA256(key))
System.Web (1)
Security\Cryptography\CryptoAlgorithms.cs (1)
53return new HMACSHA256();
8 references to HMACSHA256
mscorlib (1)
system\security\cryptography\cryptoconfig.cs (1)
184Type HMACSHA256Type = typeof(System.Security.Cryptography.HMACSHA256);
System.Data (3)
fx\src\data\System\Data\SqlClient\SqlAeadAes256CbcHmac256Algorithm.cs (2)
222using (HMACSHA256 hmac = new HMACSHA256(_columnEncryptionKey.MACKey)) { 389using (HMACSHA256 hmac = new HMACSHA256(_columnEncryptionKey.MACKey)) {
fx\src\data\System\Data\SqlClient\SqlSecurityUtility.cs (1)
36using (HMACSHA256 hmac = new HMACSHA256(key)) {
System.ServiceModel (3)
System\ServiceModel\Channels\PeerSecurityHelpers.cs (1)
58using (HMACSHA256 algo = new HMACSHA256(pwdBytes))
System\ServiceModel\Channels\PeerSecurityManager.cs (1)
178using (HMACSHA256 algo = new HMACSHA256())
System\ServiceModel\Security\Tokens\WindowsUserNameCachingSecurityTokenAuthenticator.cs (1)
130using (HMACSHA256 hmac = new HMACSHA256(key))
System.Web (1)
Security\Cryptography\CryptoAlgorithms.cs (1)
52internal static HMACSHA256 CreateHMACSHA256() {