Forrest logo
back to context overview

openssl-ts

List of commands for openssl-ts:

  • openssl-ts:tldr:01897 openssl-ts: Generate a SHA-512 timestamp request of a specific file and output to `file.tsq`.
    $ openssl ts -query -data ${filename} -sha512 -out ${filename-tsq}
    try on your machine
    explain this command
  • openssl-ts:tldr:420ae openssl-ts: Verify a timestamp request file and a timestamp response file from the server with an SSL certificate file.
    $ openssl ts -verify -in ${filename-tsr} -queryfile ${filename-tsq} -partial_chain -CAfile ${path-to-cert-pem}
    try on your machine
    explain this command
  • openssl-ts:tldr:c49ba openssl-ts: Create a timestamp response for request using key and signing certificate and output it to `file.tsr`.
    $ openssl ts -reply -queryfile ${filename-tsq} -inkey ${path-to-tsakey-pem} -signer tsacert.pem -out ${filename-tsr}
    try on your machine
    explain this command
  • openssl-ts:tldr:d9f23 openssl-ts: Check the date and metadata of a specific timestamp response file.
    $ openssl ts -reply -in ${filename-tsr} -text
    try on your machine
    explain this command
back to context overview