selfsigned

Quick and easy self signed ssl certificate

In many environments you can use ssl encryption, and you may skip the encryption because generating a cert or getting a lets encrypt cert would add more time to the thing your are working on. To overcome this security issue I wrote a small script to create a crt and key file. selfsigned.sh #!/bin/bash # fast ssl cert without ca ENDPOINT=$1 openssl genrsa -out $ENDPOINT.key 2048 openssl req -new -x509 -key $ENDPOINT.