Skip to content

Latest commit

 

History

History
16 lines (15 loc) · 503 Bytes

2019-02-12-certs.md

File metadata and controls

16 lines (15 loc) · 503 Bytes
draft title categories tags date
false
certs
daily
2019-02-12-T08:08:50-04:00

self signed certs

Genning certs is always a pita, luckily I found a quick and easy way from the folks over at spiderlabs, to do it.. gen-self-signed-cert.sh

#!/bin/bash
openssl genrsa -out my.key 2048
openssl req -new -x509 -days 3650 -key my.key -out my.crt -subj "/"