14 references to VerifySignatures
Microsoft.DotNet.SignTool (14)
src\Configuration.cs (7)
373isAlreadyAuthenticodeSigned = IsSigned(file, VerifySignatures.IsSignedPE(file.FullPath)); 423isAlreadyAuthenticodeSigned = IsSigned(file, VerifySignatures.IsSignedPkgOrAppBundle(_log, file.FullPath, _pkgToolPath)); 427isAlreadyAuthenticodeSigned = IsSigned(file, VerifySignatures.IsSignedNupkg(file.FullPath)); 431isAlreadyAuthenticodeSigned = IsSigned(file, VerifySignatures.IsWixSigned(file.FullPath)); 435isAlreadyAuthenticodeSigned = IsSigned(file, VerifySignatures.IsSignedDeb(_log, file.FullPath)); 439isAlreadyAuthenticodeSigned = IsSigned(file, VerifySignatures.IsSignedRpm(_log, file.FullPath));; 443isAlreadyAuthenticodeSigned = IsSigned(file, VerifySignatures.IsSignedPowershellFile(file.FullPath));
src\RealSignTool.cs (7)
125return VerifySignatures.IsSignedPE(assemblyStream); 140return VerifySignatures.IsSignedDeb(log, filePath); 145return VerifySignatures.IsSignedRpm(log, filePath); 150return VerifySignatures.IsSignedPowershellFile(filePath); 155return VerifySignatures.IsSignedNupkg(filePath); 161return VerifySignatures.IsSignedVSIXByFileMarker(filePath); 166return VerifySignatures.IsSignedPkgOrAppBundle(log, fullPath, pkgToolPath);