Differences between revisions 1 and 3 (spanning 2 versions)
Revision 1 as of 2020-12-08 17:05:19
Size: 563
Comment:
Revision 3 as of 2021-05-17 19:51:53
Size: 563
Comment:
No differences found!

OpenSSL

A library for implementing SSL/TLS encryption.


Certificates

It is highly recommended to not use OpenSSL certificates for web encryption. These certificates will be self-signed (as opposed to signed by a trusted certificate authority).

Usage

To generate a certificate and private key simultaneously, try:

openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout /etc/ssl/domain-name.com/key.pem -out /etc/ssl/domain-name.com/cert.pem


CategoryRicottone

Encryption/OpenSSL (last edited 2023-06-21 09:01:26 by DominicRicottone)