OpenSSL: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
Line 1: Line 1:
== Manipulation ==
== Manipulation ==
=== Generate ===
<syntaxhighlight lang="bash">
<syntaxhighlight lang="bash">
# generate a new private key and certificate signing request
# generate a new private key and certificate signing request
Line 10: Line 11:
</syntaxhighlight>
</syntaxhighlight>


=== Check/Verify ===
<syntaxhighlight lang="bash">
<syntaxhighlight lang="bash">
# check a certificate signing request(csr)
# check a certificate signing request(csr)

Revision as of 05:28, 27 February 2018

Manipulation

Generate

# generate a new private key and certificate signing request
openssl req -out chorke.csr -new -newkey rsa:2048 -nodes \
-keyout chorke.key

#generate a self-signed certificate 
openssl req -x509 -sha256 -nodes -days 365 -newkey rsa:2048 \
-keyout privateKey.key -out certificate.crt

Check/Verify

# check a certificate signing request(csr)
openssl req -text -noout -verify -in chorke.csr

# check a private key
openssl rsa -check -in chorke.key

# check a certificate
openssl x509 -text -noout -in chorke.crt

# check a pkcs#12 file (.pfx or .p12)
# openssl pkcs12 -info -in chorke.p12
openssl pkcs12 -info -nokeys -passin \
pass:password -in  chorke.p12

References