10

I am trying to retrieve the date that the manifest was signed because I need to compare the date to the expiration date of a certificate. the manifest signature tag seems to contain no timestamp in it.

I am using System.Security.Cryptography.Xml.SignedXml to load a manifest file. I'm unable to determine the method I need to use to extract the date the manifest was signed.

There is no plain text date in the manifest file itself so im assuming its embedded in the signaturevalue or other tag?

Am I taking the wrong approach to this?

Jean-François Côté
  • 4,200
  • 11
  • 52
  • 88

2 Answers2

1

I'm no expert with this kind of thing, but you might be able to use Mage.exe (Microsoft's command line Manifest Generation and Editing Tool) to read the timestamp from the manifest file. It comes with Visual Studio.

Sheridan
  • 68,826
  • 24
  • 143
  • 183
0

You might get some info from the MSDN docs.

Echilon
  • 10,064
  • 33
  • 131
  • 217
anit
  • 1,606
  • 14
  • 20