Skip to content

makew0rld/rfcts

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

rfcts

This repo contains of couple of Bash scripts for creating and verifying RFC 3161 timestamps. You can learn more about trusted timestamping and the context for this repo in my blog post.

General usage:

$ ./rfcts
help: ./rfcts [-s/--server URL] [-o/--out FILE.TSR]

$ ./rfcts myfile.jpg
Using configuration from /etc/ssl/openssl.cnf
Created myfile.jpg.tsr

$ ./rfcts-verify
help: ./rfcts-verify DATA_FILE TSR_FILE

$ ./rfcts-verify myfile.jpg myfile.jpg.tsr
Verification: OK
Time stamp: Sep  7 04:00:48 2023 GMT

$ ./rfcts-verify myfile.jpg bad.tsr
Verification: FAILED

Using data from stdin:

$ echo -n 'some data' | rfcts -o /tmp/test.tsr /dev/stdin
Using configuration from /etc/ssl/openssl.cnf
Created /tmp/test.tsr

$ echo -n 'some data' | rfcts-verify /dev/stdin /tmp/test.tsr
Verification: OK
Time stamp: Oct  1 04:20:48 2023 GMT

The default timestamp authority is DigiCert, as they are a reputable and established organization.

By default the verify script uses the system trust store for root certs. This will not work for timestamp authorities that don't sign using CA-signed certs, such as freeTSA.org.

License

Public domain, using the Unlicense. See LICENSE for details.

About

Bash scripts for RFC 3161 trusted timestamping

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages