I am currently checking that the digital signature of windows installer files (.msi) is valid in C# using the WinVerifyTrust api. I am also verifying that the thumbprint from the signature is from a known list.
I need to do the same for Mac OSX files (.dmg) in C# (on Windows). Is there any way to do this?
Any DMG file has 'Koly' block, I don't think you will easily find ready to go code on windows capable to read it in C#...But take a look here http://newosxbook.com/DMG.html
What you practically interested in is last 512 bytes of a file.
Consider the following lines of code as example of reading bytes
Here you can see example of reading all properties from file header
More details for code here (https://github.com/DiscUtils/DiscUtils)
If you do read XML definition of file (check XMLOffset and XMLLength) you should be able to identify file structure and extract files (and it's properties).
Since MAC is signing files (as far as I remember) the signature could be taken from there. Checksum at top level is protecting from package modification and should be made with same certificate that is used for signing.
Hope this helps.