Not found locally for openssl-s_time. Try Google search
openssl-s_time — SSL/TLS performance timing program
| Use Case | Command | Description |
|---|---|---|
| Measure SSL/TLS connection performance | openssl s_time -connect host:port -www / -CApath /path -CAfile cert.pem -cipher cipherlist |
Connects to a server, fetches a page, and measures connection time and throughput. |
| Test session reuse | openssl s_time -connect host:port -reuse |
Uses the same session ID for all connections to verify session caching works. |
| Test with new session per connection | openssl s_time -connect host:port -new |
Creates a new session ID for each connection to measure full handshake performance. |
| Specify TLS version | openssl s_time -connect host:port -tls1_2 |
Forces a specific TLS protocol version (e.g., -tls1, -tls1_1, -tls1_2, -tls1_3, -ssl3). |
| Custom cipher suite | openssl s_time -connect host:port -cipher "ECDHE-RSA-AES128-GCM-SHA256" |
Restricts the client to a specific cipher list for TLSv1.2 and below. |
openssl s_time [-help] [-connect host:port] [-www page] [-cert
filename] [-key filename] [-reuse] [-new] [-verify depth] [-time
seconds] [-ssl3] [-tls1] [-tls1_1] [-tls1_2] [-tls1_3] [-bugs] [-cipher
cipherlist] [-ciphersuites val] [-nameopt option] [-cafile file]
[-CAfile file] [-no-CAfile] [-CApath dir] [-no-CApath] [-CAstore uri]
[-no-CAstore] [-provider name] [-provider-path path] [-propquery propq]
This command implements a generic SSL/TLS client which connects to a remote host using SSL/TLS. It can request a page from the server and includes the time to transfer the payload data in its timing measurements. It measures the number of connections within a given timeframe, the amount of data transferred (if any), and calculates the average time spent for one connection.
This command can be used to measure the performance of an SSL connection. To connect to an SSL HTTP server and get the default page the command
openssl s_time -connect servername:443 -www / -CApath yourdir -CAfile yourfile.pem -cipher commoncipher [-ssl3]
would typically be used (https uses port 443). commoncipher is a cipher to which both client and server can agree, see the openssl-ciphers(1) command for details.
If the handshake fails then there are several possible causes, if it is nothing obvious like no client certificate then the -bugs and -ssl3 options can be tried in case it is a buggy server. In particular you should play with these options before submitting a bug report to an OpenSSL mailing list.
A frequent problem when attempting to get client certificates working is that a web client complains it has no certificates or gives an empty list to choose from. This is normally because the server is not sending the clients certificate authority in its "acceptable CA list" when it requests a certificate. By using openssl-s_client(1) the CA list can be viewed and checked. However, some servers only request client authentication after a specific URL is requested. To obtain the list in this case it is necessary to use the -prexit option of openssl-s_client(1) and send an HTTP request for an appropriate page.
If a certificate is specified on the command line using the -cert option it will not be used unless the server specifically requests a client certificate. Therefore, merely including a client certificate on the command line is no guarantee that the certificate works.
Because this program does not have all the options of the openssl-s_client(1) program to turn protocols on and off, you may not be able to measure the performance of all protocols with all servers.
The -verify option should really exit if the server verification fails.
The -cafile option was deprecated in OpenSSL 3.0.
Copyright 2004-2021 The OpenSSL Project Authors. All Rights Reserved.
Licensed under the Apache License 2.0 (the "License"). 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 <https://www.openssl.org/source/license.html>.
Generated by phpman v4.10.0-16-g1a0e228 Author: Che Dong Under GNU General Public License
2026-09-22 13:45 @216.73.217.0
CrawledBy Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)