mirror of
git://slackware.nl/current.git
synced 2025-01-15 15:41:54 +01:00
14 lines
290 B
Bash
14 lines
290 B
Bash
|
#!/bin/sh
|
||
|
USE_DH=0
|
||
|
|
||
|
openssl req -new -x509 -days 365 -nodes \
|
||
|
-config ./stunnel.cnf -out stunnel.pem -keyout stunnel.pem
|
||
|
|
||
|
test $USE_DH -eq 0 || openssl gendh 512 >> stunnel.pem
|
||
|
|
||
|
openssl x509 -subject -dates -fingerprint -noout \
|
||
|
-in stunnel.pem
|
||
|
|
||
|
chmod 600 stunnel.pem
|
||
|
rm -f stunnel.rnd
|