14 references to VerifySignatures
Microsoft.DotNet.SignTool (14)
src\Configuration.cs (7)
372isAlreadyAuthenticodeSigned = IsSigned(file, VerifySignatures.IsSignedPE(file.FullPath)); 422isAlreadyAuthenticodeSigned = IsSigned(file, VerifySignatures.IsSignedPkgOrAppBundle(_log, file.FullPath, _pkgToolPath)); 426isAlreadyAuthenticodeSigned = IsSigned(file, VerifySignatures.IsSignedNupkg(file.FullPath)); 430isAlreadyAuthenticodeSigned = IsSigned(file, VerifySignatures.IsWixSigned(file.FullPath)); 434isAlreadyAuthenticodeSigned = IsSigned(file, VerifySignatures.IsSignedDeb(_log, file.FullPath)); 438isAlreadyAuthenticodeSigned = IsSigned(file, VerifySignatures.IsSignedRpm(_log, file.FullPath));; 442isAlreadyAuthenticodeSigned = IsSigned(file, VerifySignatures.IsSignedPowershellFile(file.FullPath));
src\RealSignTool.cs (7)
84return VerifySignatures.IsSignedPE(assemblyStream); 99return VerifySignatures.IsSignedDeb(log, filePath); 104return VerifySignatures.IsSignedRpm(log, filePath); 109return VerifySignatures.IsSignedPowershellFile(filePath); 114return VerifySignatures.IsSignedNupkg(filePath); 120return VerifySignatures.IsSignedVSIXByFileMarker(filePath); 125return VerifySignatures.IsSignedPkgOrAppBundle(log, fullPath, pkgToolPath);