10 references to ContentUtil
Microsoft.DotNet.SignTool (10)
src\Configuration.cs (5)
159var contentHash = ContentUtil.GetContentHash(itemToSign.FullPath); 313if (file.ContentHash == ContentUtil.EmptyFileContentHash) 642bool isManaged = ContentUtil.IsManaged(fullPath); 649bool isCrossgened = ContentUtil.IsCrossgened(fullPath); 650string publicKeyToken = ContentUtil.GetPublicKeyToken(fullPath);
src\FileSignInfo.cs (2)
77internal bool IsManaged() => ContentUtil.IsManaged(FullPath); 79internal bool IsCrossgened() => ContentUtil.IsCrossgened(FullPath);
src\SignedFileContentKey.cs (1)
37StringHash = ContentUtil.HashToString(contentHash);
src\ZipDataEntry.cs (2)
41_contentHash = ContentUtil.GetContentHash(_stream); 56_contentHash = ContentUtil.GetContentHash(contentHashStream);