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