$47 GRAYBYTE WORDPRESS FILE MANAGER $74

SERVER : premium201.web-hosting.com #1 SMP Wed Mar 26 12:08:09 UTC 2025
SERVER IP : 172.67.217.254 | ADMIN IP 216.73.216.180
OPTIONS : CRL = ON | WGT = ON | SDO = OFF | PKEX = OFF
DEACTIVATED : mail

/opt/cpanel/ea-openssl11/share/doc/openssl/html/man1/

HOME
Current File : /opt/cpanel/ea-openssl11/share/doc/openssl/html/man1//tsget.html
<?xml version="1.0" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>tsget</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<link rev="made" href="mailto:root@localhost" />
</head>

<body>



<ul id="index">
  <li><a href="#NAME">NAME</a></li>
  <li><a href="#SYNOPSIS">SYNOPSIS</a></li>
  <li><a href="#DESCRIPTION">DESCRIPTION</a></li>
  <li><a href="#OPTIONS">OPTIONS</a></li>
  <li><a href="#ENVIRONMENT-VARIABLES">ENVIRONMENT VARIABLES</a></li>
  <li><a href="#EXAMPLES">EXAMPLES</a></li>
  <li><a href="#SEE-ALSO">SEE ALSO</a></li>
  <li><a href="#COPYRIGHT">COPYRIGHT</a></li>
</ul>

<h1 id="NAME">NAME</h1>

<p>openssl-tsget, tsget - Time Stamping HTTP/HTTPS client</p>

<h1 id="SYNOPSIS">SYNOPSIS</h1>

<p><b>tsget</b> <b>-h</b> server_url [<b>-e</b> extension] [<b>-o</b> output] [<b>-v</b>] [<b>-d</b>] [<b>-k</b> private_key.pem] [<b>-p</b> key_password] [<b>-c</b> client_cert.pem] [<b>-C</b> CA_certs.pem] [<b>-P</b> CA_path] [<b>-r</b> file:file...] [<b>-g</b> EGD_socket] [request]...</p>

<h1 id="DESCRIPTION">DESCRIPTION</h1>

<p>The <b>tsget</b> command can be used for sending a timestamp request, as specified in <b>RFC 3161</b>, to a timestamp server over HTTP or HTTPS and storing the timestamp response in a file. This tool cannot be used for creating the requests and verifying responses, you can use the OpenSSL <b>ts(1)</b> command to do that. <b>tsget</b> can send several requests to the server without closing the TCP connection if more than one requests are specified on the command line.</p>

<p>The tool sends the following HTTP request for each timestamp request:</p>

<pre><code>        POST url HTTP/1.1
        User-Agent: OpenTSA tsget.pl/&lt;version&gt;
        Host: &lt;host&gt;:&lt;port&gt;
        Pragma: no-cache
        Content-Type: application/timestamp-query
        Accept: application/timestamp-reply
        Content-Length: length of body

        ...binary request specified by the user...</code></pre>

<p><b>tsget</b> expects a response of type application/timestamp-reply, which is written to a file without any interpretation.</p>

<h1 id="OPTIONS">OPTIONS</h1>

<dl>

<dt id="h-server_url"><b>-h</b> server_url</dt>
<dd>

<p>The URL of the HTTP/HTTPS server listening for timestamp requests.</p>

</dd>
<dt id="e-extension"><b>-e</b> extension</dt>
<dd>

<p>If the <b>-o</b> option is not given this argument specifies the extension of the output files. The base name of the output file will be the same as those of the input files. Default extension is &#39;.tsr&#39;. (Optional)</p>

</dd>
<dt id="o-output"><b>-o</b> output</dt>
<dd>

<p>This option can be specified only when just one request is sent to the server. The timestamp response will be written to the given output file. &#39;-&#39; means standard output. In case of multiple timestamp requests or the absence of this argument the names of the output files will be derived from the names of the input files and the default or specified extension argument. (Optional)</p>

</dd>
<dt id="v"><b>-v</b></dt>
<dd>

<p>The name of the currently processed request is printed on standard error. (Optional)</p>

</dd>
<dt id="d"><b>-d</b></dt>
<dd>

<p>Switches on verbose mode for the underlying <b>curl</b> library. You can see detailed debug messages for the connection. (Optional)</p>

</dd>
<dt id="k-private_key.pem"><b>-k</b> private_key.pem</dt>
<dd>

<p>(HTTPS) In case of certificate-based client authentication over HTTPS &lt;private_key.pem&gt; must contain the private key of the user. The private key file can optionally be protected by a passphrase. The <b>-c</b> option must also be specified. (Optional)</p>

</dd>
<dt id="p-key_password"><b>-p</b> key_password</dt>
<dd>

<p>(HTTPS) Specifies the passphrase for the private key specified by the <b>-k</b> argument. If this option is omitted and the key is passphrase protected <b>tsget</b> will ask for it. (Optional)</p>

</dd>
<dt id="c-client_cert.pem"><b>-c</b> client_cert.pem</dt>
<dd>

<p>(HTTPS) In case of certificate-based client authentication over HTTPS &lt;client_cert.pem&gt; must contain the X.509 certificate of the user. The <b>-k</b> option must also be specified. If this option is not specified no certificate-based client authentication will take place. (Optional)</p>

</dd>
<dt id="C-CA_certs.pem"><b>-C</b> CA_certs.pem</dt>
<dd>

<p>(HTTPS) The trusted CA certificate store. The certificate chain of the peer&#39;s certificate must include one of the CA certificates specified in this file. Either option <b>-C</b> or option <b>-P</b> must be given in case of HTTPS. (Optional)</p>

</dd>
<dt id="P-CA_path"><b>-P</b> CA_path</dt>
<dd>

<p>(HTTPS) The path containing the trusted CA certificates to verify the peer&#39;s certificate. The directory must be prepared with the <b>c_rehash</b> OpenSSL utility. Either option <b>-C</b> or option <b>-P</b> must be given in case of HTTPS. (Optional)</p>

</dd>
<dt id="rand-file:file"><b>-rand</b> file:file...</dt>
<dd>

<p>The files containing random data for seeding the random number generator. Multiple files can be specified, the separator is <b>;</b> for MS-Windows, <b>,</b> for VMS and <b>:</b> for all other platforms. (Optional)</p>

</dd>
<dt id="g-EGD_socket"><b>-g</b> EGD_socket</dt>
<dd>

<p>The name of an EGD socket to get random data from. (Optional)</p>

</dd>
<dt id="request">[request]...</dt>
<dd>

<p>List of files containing <b>RFC 3161</b> DER-encoded timestamp requests. If no requests are specified only one request will be sent to the server and it will be read from the standard input. (Optional)</p>

</dd>
</dl>

<h1 id="ENVIRONMENT-VARIABLES">ENVIRONMENT VARIABLES</h1>

<p>The <b>TSGET</b> environment variable can optionally contain default arguments. The content of this variable is added to the list of command line arguments.</p>

<h1 id="EXAMPLES">EXAMPLES</h1>

<p>The examples below presume that <b>file1.tsq</b> and <b>file2.tsq</b> contain valid timestamp requests, tsa.opentsa.org listens at port 8080 for HTTP requests and at port 8443 for HTTPS requests, the TSA service is available at the /tsa absolute path.</p>

<p>Get a timestamp response for file1.tsq over HTTP, output is written to file1.tsr:</p>

<pre><code>  tsget -h http://tsa.opentsa.org:8080/tsa file1.tsq</code></pre>

<p>Get a timestamp response for file1.tsq and file2.tsq over HTTP showing progress, output is written to file1.reply and file2.reply respectively:</p>

<pre><code>  tsget -h http://tsa.opentsa.org:8080/tsa -v -e .reply \
        file1.tsq file2.tsq</code></pre>

<p>Create a timestamp request, write it to file3.tsq, send it to the server and write the response to file3.tsr:</p>

<pre><code>  openssl ts -query -data file3.txt -cert | tee file3.tsq \
        | tsget -h http://tsa.opentsa.org:8080/tsa \
        -o file3.tsr</code></pre>

<p>Get a timestamp response for file1.tsq over HTTPS without client authentication:</p>

<pre><code>  tsget -h https://tsa.opentsa.org:8443/tsa \
        -C cacerts.pem file1.tsq</code></pre>

<p>Get a timestamp response for file1.tsq over HTTPS with certificate-based client authentication (it will ask for the passphrase if client_key.pem is protected):</p>

<pre><code>  tsget -h https://tsa.opentsa.org:8443/tsa -C cacerts.pem \
        -k client_key.pem -c client_cert.pem file1.tsq</code></pre>

<p>You can shorten the previous command line if you make use of the <b>TSGET</b> environment variable. The following commands do the same as the previous example:</p>

<pre><code>  TSGET=&#39;-h https://tsa.opentsa.org:8443/tsa -C cacerts.pem \
        -k client_key.pem -c client_cert.pem&#39;
  export TSGET
  tsget file1.tsq</code></pre>

<h1 id="SEE-ALSO">SEE ALSO</h1>

<p><a href="../man1/openssl.html">openssl(1)</a>, <a href="../man1/ts.html">ts(1)</a>, <a href="../man1/curl.html">curl(1)</a>, <b>RFC 3161</b></p>

<h1 id="COPYRIGHT">COPYRIGHT</h1>

<p>Copyright 2006-2020 The OpenSSL Project Authors. All Rights Reserved.</p>

<p>Licensed under the OpenSSL license (the &quot;License&quot;). You may not use this file except in compliance with the License. You can obtain a copy in the file LICENSE in the source distribution or at <a href="https://www.openssl.org/source/license.html">https://www.openssl.org/source/license.html</a>.</p>


</body>

</html>




Current_dir [ NOT WRITEABLE ] Document_root [ WRITEABLE ]


[ Back ]
NAME
SIZE
LAST TOUCH
USER
CAN-I?
FUNCTIONS
..
--
3 Mar 2024 8.38 PM
root / root
0755
CA.pl.html
9.313 KB
4 Dec 2023 4.34 PM
root / root
0644
asn1parse.html
8.19 KB
4 Dec 2023 4.34 PM
root / root
0644
c_rehash.html
5.646 KB
4 Dec 2023 4.34 PM
root / root
0644
ca.html
30.877 KB
4 Dec 2023 4.34 PM
root / root
0644
ciphers.html
35.075 KB
4 Dec 2023 4.34 PM
root / root
0644
cms.html
29.813 KB
4 Dec 2023 4.34 PM
root / root
0644
crl.html
4.668 KB
4 Dec 2023 4.34 PM
root / root
0644
crl2pkcs7.html
4.177 KB
4 Dec 2023 4.34 PM
root / root
0644
dgst.html
8.785 KB
4 Dec 2023 4.34 PM
root / root
0644
dhparam.html
6.182 KB
4 Dec 2023 4.34 PM
root / root
0644
dsa.html
7.002 KB
4 Dec 2023 4.34 PM
root / root
0644
dsaparam.html
4.873 KB
4 Dec 2023 4.34 PM
root / root
0644
ec.html
7.849 KB
4 Dec 2023 4.34 PM
root / root
0644
ecparam.html
7.1 KB
4 Dec 2023 4.34 PM
root / root
0644
enc.html
16.571 KB
4 Dec 2023 4.34 PM
root / root
0644
engine.html
4.234 KB
4 Dec 2023 4.34 PM
root / root
0644
errstr.html
1.853 KB
4 Dec 2023 4.34 PM
root / root
0644
gendsa.html
4.001 KB
4 Dec 2023 4.34 PM
root / root
0644
genpkey.html
13.752 KB
4 Dec 2023 4.34 PM
root / root
0644
genrsa.html
5.12 KB
4 Dec 2023 4.34 PM
root / root
0644
list.html
3.373 KB
4 Dec 2023 4.34 PM
root / root
0644
nseq.html
3.231 KB
4 Dec 2023 4.34 PM
root / root
0644
ocsp.html
20.826 KB
4 Dec 2023 4.34 PM
root / root
0644
openssl-asn1parse.html
8.19 KB
4 Dec 2023 4.34 PM
root / root
0644
openssl-c_rehash.html
5.646 KB
4 Dec 2023 4.34 PM
root / root
0644
openssl-ca.html
30.877 KB
4 Dec 2023 4.34 PM
root / root
0644
openssl-ciphers.html
35.075 KB
4 Dec 2023 4.34 PM
root / root
0644
openssl-cms.html
29.813 KB
4 Dec 2023 4.34 PM
root / root
0644
openssl-crl.html
4.668 KB
4 Dec 2023 4.34 PM
root / root
0644
openssl-crl2pkcs7.html
4.177 KB
4 Dec 2023 4.34 PM
root / root
0644
openssl-dgst.html
8.785 KB
4 Dec 2023 4.34 PM
root / root
0644
openssl-dhparam.html
6.182 KB
4 Dec 2023 4.34 PM
root / root
0644
openssl-dsa.html
7.002 KB
4 Dec 2023 4.34 PM
root / root
0644
openssl-dsaparam.html
4.873 KB
4 Dec 2023 4.34 PM
root / root
0644
openssl-ec.html
7.849 KB
4 Dec 2023 4.34 PM
root / root
0644
openssl-ecparam.html
7.1 KB
4 Dec 2023 4.34 PM
root / root
0644
openssl-enc.html
16.571 KB
4 Dec 2023 4.34 PM
root / root
0644
openssl-engine.html
4.234 KB
4 Dec 2023 4.34 PM
root / root
0644
openssl-errstr.html
1.853 KB
4 Dec 2023 4.34 PM
root / root
0644
openssl-gendsa.html
4.001 KB
4 Dec 2023 4.34 PM
root / root
0644
openssl-genpkey.html
13.752 KB
4 Dec 2023 4.34 PM
root / root
0644
openssl-genrsa.html
5.12 KB
4 Dec 2023 4.34 PM
root / root
0644
openssl-list.html
3.373 KB
4 Dec 2023 4.34 PM
root / root
0644
openssl-nseq.html
3.231 KB
4 Dec 2023 4.34 PM
root / root
0644
openssl-ocsp.html
20.826 KB
4 Dec 2023 4.34 PM
root / root
0644
openssl-passwd.html
4.226 KB
4 Dec 2023 4.34 PM
root / root
0644
openssl-pkcs12.html
15.472 KB
4 Dec 2023 4.34 PM
root / root
0644
openssl-pkcs7.html
4.182 KB
4 Dec 2023 4.34 PM
root / root
0644
openssl-pkcs8.html
13.173 KB
4 Dec 2023 4.34 PM
root / root
0644
openssl-pkey.html
6.16 KB
4 Dec 2023 4.34 PM
root / root
0644
openssl-pkeyparam.html
3.353 KB
4 Dec 2023 4.34 PM
root / root
0644
openssl-pkeyutl.html
13.781 KB
4 Dec 2023 4.34 PM
root / root
0644
openssl-prime.html
2.274 KB
4 Dec 2023 4.34 PM
root / root
0644
openssl-rand.html
3.831 KB
4 Dec 2023 4.34 PM
root / root
0644
openssl-rehash.html
5.646 KB
4 Dec 2023 4.34 PM
root / root
0644
openssl-req.html
28.049 KB
4 Dec 2023 4.34 PM
root / root
0644
openssl-rsa.html
7.71 KB
4 Dec 2023 4.34 PM
root / root
0644
openssl-rsautl.html
7.825 KB
4 Dec 2023 4.34 PM
root / root
0644
openssl-s_client.html
34.622 KB
4 Dec 2023 4.34 PM
root / root
0644
openssl-s_server.html
32.674 KB
4 Dec 2023 4.34 PM
root / root
0644
openssl-s_time.html
9.467 KB
4 Dec 2023 4.34 PM
root / root
0644
openssl-sess_id.html
5.953 KB
4 Dec 2023 4.34 PM
root / root
0644
openssl-smime.html
20.694 KB
4 Dec 2023 4.34 PM
root / root
0644
openssl-speed.html
3.933 KB
4 Dec 2023 4.34 PM
root / root
0644
openssl-spkac.html
5.588 KB
4 Dec 2023 4.34 PM
root / root
0644
openssl-srp.html
2.66 KB
4 Dec 2023 4.34 PM
root / root
0644
openssl-storeutl.html
4.597 KB
4 Dec 2023 4.34 PM
root / root
0644
openssl-ts.html
26.558 KB
4 Dec 2023 4.34 PM
root / root
0644
openssl-tsget.html
8.245 KB
4 Dec 2023 4.34 PM
root / root
0644
openssl-verify.html
31.808 KB
4 Dec 2023 4.34 PM
root / root
0644
openssl-version.html
2.311 KB
4 Dec 2023 4.34 PM
root / root
0644
openssl-x509.html
36.496 KB
4 Dec 2023 4.34 PM
root / root
0644
openssl.html
20.977 KB
4 Dec 2023 4.34 PM
root / root
0644
passwd.html
4.226 KB
4 Dec 2023 4.34 PM
root / root
0644
pkcs12.html
15.472 KB
4 Dec 2023 4.34 PM
root / root
0644
pkcs7.html
4.182 KB
4 Dec 2023 4.34 PM
root / root
0644
pkcs8.html
13.173 KB
4 Dec 2023 4.34 PM
root / root
0644
pkey.html
6.16 KB
4 Dec 2023 4.34 PM
root / root
0644
pkeyparam.html
3.353 KB
4 Dec 2023 4.34 PM
root / root
0644
pkeyutl.html
13.781 KB
4 Dec 2023 4.34 PM
root / root
0644
prime.html
2.274 KB
4 Dec 2023 4.34 PM
root / root
0644
rand.html
3.831 KB
4 Dec 2023 4.34 PM
root / root
0644
rehash.html
5.646 KB
4 Dec 2023 4.34 PM
root / root
0644
req.html
28.049 KB
4 Dec 2023 4.34 PM
root / root
0644
rsa.html
7.71 KB
4 Dec 2023 4.34 PM
root / root
0644
rsautl.html
7.825 KB
4 Dec 2023 4.34 PM
root / root
0644
s_client.html
34.622 KB
4 Dec 2023 4.34 PM
root / root
0644
s_server.html
32.674 KB
4 Dec 2023 4.34 PM
root / root
0644
s_time.html
9.467 KB
4 Dec 2023 4.34 PM
root / root
0644
sess_id.html
5.953 KB
4 Dec 2023 4.34 PM
root / root
0644
smime.html
20.694 KB
4 Dec 2023 4.34 PM
root / root
0644
speed.html
3.933 KB
4 Dec 2023 4.34 PM
root / root
0644
spkac.html
5.588 KB
4 Dec 2023 4.34 PM
root / root
0644
srp.html
2.66 KB
4 Dec 2023 4.34 PM
root / root
0644
storeutl.html
4.597 KB
4 Dec 2023 4.34 PM
root / root
0644
ts.html
26.558 KB
4 Dec 2023 4.34 PM
root / root
0644
tsget.html
8.245 KB
4 Dec 2023 4.34 PM
root / root
0644
verify.html
31.808 KB
4 Dec 2023 4.34 PM
root / root
0644
version.html
2.311 KB
4 Dec 2023 4.34 PM
root / root
0644
x509.html
36.496 KB
4 Dec 2023 4.34 PM
root / root
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025 CONTACT ME
Static GIF