25 references to GetHashAndReset
dotnet-sourcelink (3)
ILAssembler (1)
GrammarVisitor.cs (1)
258return BlobContentId.FromHash(hash.GetHashAndReset());
ILCompiler.ReadyToRun (3)
Compiler\CryptographicHashProvider.cs (3)
221return ImmutableArray.Create(incrementalHash.GetHashAndReset()); 233return ImmutableArray.Create(incrementalHash.GetHashAndReset()); 243return ImmutableArray.Create(incrementalHash.GetHashAndReset());
Microsoft.CodeAnalysis (5)
CryptographicHashProvider.cs (4)
221return ImmutableArray.Create(incrementalHash.GetHashAndReset()); 230return ImmutableArray.Create(incrementalHash.GetHashAndReset()); 240return ImmutableArray.Create(incrementalHash.GetHashAndReset()); 256return ImmutableArray.Create(incrementalHash.GetHashAndReset());
PEWriter\SigningUtilities.cs (1)
39return hash.GetHashAndReset();
Microsoft.DotNet.StrongName (1)
Utils.cs (1)
169return hash.GetHashAndReset();
NuGet.Packaging (1)
Sha512HashFunction.cs (1)
69_hash = _hashFunc.GetHashAndReset();
System.Net.Security (1)
System\Net\NegotiateAuthenticationPal.ManagedNtlm.cs (1)
612return md5.GetHashAndReset();
System.Security.Cryptography (6)
src\runtime\src\libraries\Common\src\System\Security\Cryptography\Pkcs\Pkcs12Builder.cs (1)
191byte[] macKey = hasher.GetHashAndReset();
System\Security\Cryptography\MD5CryptoServiceProvider.cs (1)
53return _incrementalHash.GetHashAndReset();
System\Security\Cryptography\SHA1CryptoServiceProvider.cs (1)
56return _incrementalHash.GetHashAndReset();
System\Security\Cryptography\SHA256CryptoServiceProvider.cs (1)
56return _incrementalHash.GetHashAndReset();
System\Security\Cryptography\SHA384CryptoServiceProvider.cs (1)
56return _incrementalHash.GetHashAndReset();
System\Security\Cryptography\SHA512CryptoServiceProvider.cs (1)
56return _incrementalHash.GetHashAndReset();
System.Security.Cryptography.Pkcs (4)
src\runtime\src\libraries\Common\src\System\Security\Cryptography\Pkcs\Pkcs12Builder.cs (1)
191byte[] macKey = hasher.GetHashAndReset();
System\Security\Cryptography\Pkcs\CmsHash.cs (1)
101internal override byte[] GetHashAndReset() => _incrementalHash.GetHashAndReset();
System\Security\Cryptography\Pkcs\Rfc3161TimestampRequest.cs (1)
199byte[] digest = hasher.GetHashAndReset();
System\Security\Cryptography\Pkcs\Rfc3161TimestampToken.cs (1)
193return VerifyHash(hasher.GetHashAndReset(), hashAlgorithmId.Value);