1 override of AllowedHashAlgorithms
NuGet.Packaging (1)
Signing\Specifications\SigningSpecificationsV1.cs (1)
53public override HashAlgorithmName[] AllowedHashAlgorithms => _allowedHashAlgorithms;
3 references to AllowedHashAlgorithms
NuGet.CommandLine.XPlat (2)
Utility\CommandLineUtility.cs (2)
59if (hashAlgorithm == HashAlgorithmName.Unknown || !spec.AllowedHashAlgorithms.Contains(hashAlgorithm)) 63optionName, string.Join(",", spec.AllowedHashAlgorithms)));
NuGet.Packaging (1)
Signing\Timestamp\Rfc3161TimestampProvider.cs (1)
180var supportedSignatureAlgorithms = string.Join(", ", spec.AllowedHashAlgorithms);