14 references to VerifySignatures
Microsoft.DotNet.SignTool (14)
src\Configuration.cs (7)
394isAlreadyAuthenticodeSigned = IsSigned(file, VerifySignatures.IsSignedPE(file.FullPath)); 445isAlreadyAuthenticodeSigned = IsSigned(file, VerifySignatures.IsSignedPkgOrAppBundle(_log, file.FullPath, _pkgToolPath)); 449isAlreadyAuthenticodeSigned = IsSigned(file, VerifySignatures.IsSignedNupkg(file.FullPath)); 453isAlreadyAuthenticodeSigned = IsSigned(file, VerifySignatures.IsWixSigned(file.FullPath)); 457isAlreadyAuthenticodeSigned = IsSigned(file, VerifySignatures.IsSignedDeb(_log, file.FullPath)); 461isAlreadyAuthenticodeSigned = IsSigned(file, VerifySignatures.IsSignedRpm(_log, file.FullPath));; 465isAlreadyAuthenticodeSigned = IsSigned(file, VerifySignatures.IsSignedPowershellFile(file.FullPath));
src\RealSignTool.cs (7)
132return VerifySignatures.IsSignedPE(assemblyStream); 147return VerifySignatures.IsSignedDeb(log, filePath); 152return VerifySignatures.IsSignedRpm(log, filePath); 157return VerifySignatures.IsSignedPowershellFile(filePath); 168return VerifySignatures.IsSignedNupkg(filePath); 174return VerifySignatures.IsSignedVSIXByFileMarker(filePath); 179return VerifySignatures.IsSignedPkgOrAppBundle(log, fullPath, pkgToolPath);