mirror of
https://github.com/cryptoadvance/specter-desktop.git
synced 2026-08-13 12:33:29 +02:00
36 lines
704 B
Bash
Executable file
36 lines
704 B
Bash
Executable file
#!/bin/sh
|
|
|
|
IP=$(echo $1 | egrep -o "^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$")
|
|
|
|
if [ ! $IP ]
|
|
then
|
|
echo "Usage: generate-ip-cert.sh 127.0.0.1"
|
|
exit 1
|
|
fi
|
|
|
|
echo "[req]
|
|
default_bits = 2048
|
|
distinguished_name = req_distinguished_name
|
|
req_extensions = req_ext
|
|
x509_extensions = v3_req
|
|
prompt = no
|
|
|
|
[req_distinguished_name]
|
|
countryName = XX
|
|
stateOrProvinceName = N/A
|
|
localityName = N/A
|
|
organizationName = Self-signed certificate
|
|
commonName = $IP: Self-signed certificate
|
|
|
|
[req_ext]
|
|
subjectAltName = @alt_names
|
|
|
|
[v3_req]
|
|
subjectAltName = @alt_names
|
|
|
|
[alt_names]
|
|
IP.1 = $IP
|
|
" > san.cnf
|
|
|
|
openssl req -x509 -nodes -days 730 -newkey rsa:2048 -keyout key.pem -out cert.pem -config san.cnf
|
|
rm san.cnf
|