OpenSSL c_info configuration example for Red Hat Enterprise Linux Server 7 (Maipo)

Get the default configuration file c_info for OpenSSL, optimized for Red Hat Enterprise Linux Server 7 (Maipo). This example configuration ensures optimal compatibility and performance for OpenSSL, making it easy to set up and adjust to meet your needs.

Find and download the configuration file here: /etc/pki/tls/misc/c_info.

For more configurations and setup guides, visit our related files section to further customize your system.

    #!/bin/sh
#
# print the subject
#

for i in $*
do
	n=`openssl x509 -subject -issuer -enddate -noout -in $i`
	echo "$i"
	echo "$n"
	echo "--------"
done

    
  

Config Details

Location
/etc/pki/tls/misc/c_info
Operating system
Red Hat Enterprise Linux Server 7 (Maipo)
Length
12 lines
MD5 checksum
45bbf2e1f1a5a2ff772ac81ecab10729

Usage

Download the raw file with wget or curl

Wget

wget -O c_info.example https://exampleconfig.com/static/raw/openssl/rhel7/etc/pki/tls/misc/c_info

cURL

curl https://exampleconfig.com/static/raw/openssl/rhel7/etc/pki/tls/misc/c_info > c_info.example