0

I'm signing documents and adding a timestamp seal using the XadES-T format. I think that a JSON format would simplify the signature and validation process, is there a way to sign documents and add a timestamp seal in JSON?

Miguel Carvalhais Matos
  • 1,113
  • 2
  • 13
  • 21

1 Answers1

1

JWT signatures itself does not include timestamps in its spec. But you could wrap the JSON in a PKCS#7 Content Signed Message with a timestamp.

Daniel Fisher lennybacon
  • 3,865
  • 1
  • 30
  • 38