Differences between revisions 2 and 3
Revision 2 as of 2021-05-17 19:51:47
Size: 597
Comment:
Revision 3 as of 2021-05-17 19:51:53
Size: 563
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
## page was renamed from OpenSSL

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)