...
Code Block |
---|
openssl genrsa -aes256 -out ca.key 2048 |
To create ca.key without a password:
...
Code Block |
---|
openssl genrsa -aes256 -out server.key 2048 |
To create server.key without a password:
...
Code Block |
---|
openssl genrsa -aes256 -out client.key 2048 |
Create the certificate signing request for the client (the MQTT client), client.csr. If you created ca.key on a different machine, you will need to copy client.csr to that machine.
...