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?
Asked
Active
Viewed 409 times
1 Answers
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
-
Is there a way to do it with python? – Miguel Carvalhais Matos Jul 15 '19 at 09:43