9 references to HmacStream
System.Security.Cryptography (9)
System\Security\Cryptography\CryptographicOperations.cs (1)
619return LiteHashProvider.HmacStream(hashAlgorithm.Name, key, source, destination);
System\Security\Cryptography\HMACMD5.cs (1)
195return LiteHashProvider.HmacStream(HashAlgorithmNames.MD5, key, source, destination);
System\Security\Cryptography\HMACSHA1.cs (1)
196return LiteHashProvider.HmacStream(HashAlgorithmNames.SHA1, key, source, destination);
System\Security\Cryptography\HMACSHA256.cs (1)
188return LiteHashProvider.HmacStream(HashAlgorithmNames.SHA256, key, source, destination);
System\Security\Cryptography\HMACSHA3_256.cs (1)
227return LiteHashProvider.HmacStream(HashAlgorithmNames.SHA3_256, key, source, destination);
System\Security\Cryptography\HMACSHA3_384.cs (1)
227return LiteHashProvider.HmacStream(HashAlgorithmNames.SHA3_384, key, source, destination);
System\Security\Cryptography\HMACSHA3_512.cs (1)
227return LiteHashProvider.HmacStream(HashAlgorithmNames.SHA3_512, key, source, destination);
System\Security\Cryptography\HMACSHA384.cs (1)
205return LiteHashProvider.HmacStream(HashAlgorithmNames.SHA384, key, source, destination);
System\Security\Cryptography\HMACSHA512.cs (1)
202return LiteHashProvider.HmacStream(HashAlgorithmNames.SHA512, key, source, destination);