I have tried many ways to implement timestamping through the site
https://www.freetsa.org/index_en.php#tap-stamp.
Using Javascript it is really difficult to use hashing libraries, through a special script.
I tried the interact block to interact with the web page, but it doesn't always respond correctly.
Is it possible to implement these three commands?
1 - Create a tsq (TimeStampRequest) file, which contains a hash of the file you want to sign.
$ openssl ts -query -data file.png -no_nonce -sha512 -cert -out file.tsq
2 - Send the TimeStampRequest to freeTSA.org and receive a tsr (TimeStampResponse) file.
3 - With the public Certificates you can verify the TimeStampRequest.
$ openssl ts -verify -in file.tsr -queryfile file.tsq -CAfile cacert.pem -untrusted tsa.crt
Thanks in advance.