9 references to HmacStream
System.Security.Cryptography (9)
System\Security\Cryptography\CryptographicOperations.cs (1)
580return LiteHashProvider.HmacStream(hashAlgorithm.Name, hashSizeInBytes, key, source);
System\Security\Cryptography\HMACMD5.cs (1)
218return LiteHashProvider.HmacStream(HashAlgorithmNames.MD5, HashSizeInBytes, key, source);
System\Security\Cryptography\HMACSHA1.cs (1)
218return LiteHashProvider.HmacStream(HashAlgorithmNames.SHA1, HashSizeInBytes, key, source);
System\Security\Cryptography\HMACSHA256.cs (1)
210return LiteHashProvider.HmacStream(HashAlgorithmNames.SHA256, HashSizeInBytes, key, source);
System\Security\Cryptography\HMACSHA3_256.cs (1)
250return LiteHashProvider.HmacStream(HashAlgorithmNames.SHA3_256, HashSizeInBytes, key, source);
System\Security\Cryptography\HMACSHA3_384.cs (1)
250return LiteHashProvider.HmacStream(HashAlgorithmNames.SHA3_384, HashSizeInBytes, key, source);
System\Security\Cryptography\HMACSHA3_512.cs (1)
250return LiteHashProvider.HmacStream(HashAlgorithmNames.SHA3_512, HashSizeInBytes, key, source);
System\Security\Cryptography\HMACSHA384.cs (1)
227return LiteHashProvider.HmacStream(HashAlgorithmNames.SHA384, HashSizeInBytes, key, source);
System\Security\Cryptography\HMACSHA512.cs (1)
224return LiteHashProvider.HmacStream(HashAlgorithmNames.SHA512, HashSizeInBytes, key, source);