4 instantiations of Sha512HashFunction
NuGet.Packaging (3)
PackageCreation\Authoring\PackageBuilder.cs (2)
376
using (var hashFunc = new
Sha512HashFunction
())
1291
using (var hashFunc = new
Sha512HashFunction
())
Signing\Archive\SignedPackageArchiveUtility.cs (1)
566
using (var hashFunc = new
Sha512HashFunction
())
NuGet.ProjectModel (1)
DependencyGraphSpec.cs (1)
353
return GetHash(() => UseLegacyHashFunction == true ? new
Sha512HashFunction
() : new FnvHash64Function());
8 references to Sha512HashFunction
NuGet.Packaging (8)
PackageCreation\Authoring\PackageBuilder.cs (2)
376
using (
var
hashFunc = new Sha512HashFunction())
1291
using (
var
hashFunc = new Sha512HashFunction())
Signing\Archive\SignedPackageArchiveIOUtility.cs (3)
150
internal static void ReadAndHashUntilPosition(BinaryReader reader,
Sha512HashFunction
hashFunc, long position)
187
internal static void HashBytes(
Sha512HashFunction
hashFunc, byte[] bytes)
198
internal static void HashBytes(
Sha512HashFunction
hashFunc, byte[] bytes, int count)
Signing\Archive\SignedPackageArchiveUtility.cs (3)
544
internal static void HashUInt16(
Sha512HashFunction
hashFunc, ushort value)
554
internal static void HashUInt32(
Sha512HashFunction
hashFunc, uint value)
566
using (
var
hashFunc = new Sha512HashFunction())