2 implementations of IHashFunction
NuGet.Packaging (1)
Sha512HashFunction.cs (1)
14public sealed class Sha512HashFunction : IHashFunction
NuGet.ProjectModel (1)
FnvHash64Function.cs (1)
13internal sealed class FnvHash64Function : IHashFunction
5 references to IHashFunction
NuGet.ProjectModel (5)
DependencyGraphSpec.cs (2)
356internal string GetHash(Func<IHashFunction> getHashFunction) 363using IHashFunction hashFunc = getHashFunction();
HashObjectWriter.cs (3)
23private readonly IHashFunction _hashFunc; 34/// <param name="hashFunc">An <see cref="IHashFunction"/> instance. Throws if <see langword="null" />.</param> 35public HashObjectWriter(IHashFunction hashFunc)