11 references to ContentUtil
Microsoft.DotNet.SignTool (11)
src\Configuration.cs (6)
148var contentHash = ContentUtil.GetContentHash(fullPath); 353isAlreadySigned = ContentUtil.IsAuthenticodeSigned(stream); 542bool isManaged = ContentUtil.IsManaged(fullPath); 549bool isCrossgened = ContentUtil.IsCrossgened(fullPath); 550string publicKeyToken = ContentUtil.GetPublicKeyToken(fullPath); 688ImmutableArray<byte> contentHash = ContentUtil.GetContentHash(entryMemoryStream);
src\FileSignInfo.cs (2)
62internal bool IsManaged() => ContentUtil.IsManaged(FullPath); 64internal bool IsCrossgened() => ContentUtil.IsCrossgened(FullPath);
src\RealSignTool.cs (2)
76if (!ContentUtil.IsPublicSigned(peReader)) 94return ContentUtil.IsAuthenticodeSigned(assemblyStream);
src\SignedFileContentKey.cs (1)
37StringHash = ContentUtil.HashToString(contentHash);