I am looking for any API documentation for working with Microsoft security directories, or, instead, file format information so that I can write my own parser.
In short, I have some .cat files that I need to work with. Looking at the file in a hex editor, they obviously have different areas that are somehow limited (looks like typical binary stored structures). I need to get certain information from them and ignore other information.
I could probably rebuild the format and parse what I need, but I would prefer to do it either using the Win32 API, or at least write my parser so that it is correct for the format, and not just "capable do what I need to do this. "
MSCAT32.DLL seems symbolic, but I'm not sure if it has an export to do what I need ... This is a bit cryptic (no pun intended).
Any information at all will be useful.
Just to toss some more keywords here ...
MIME type: application / vnd.ms-pki.seccat Magic header bytes: 30 80 09 06 Field separators in the file look like this: EOT (04) and € (80) The program that generates them is: MakeCat.exe
source share