You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
192 B
Plaintext
8 lines
192 B
Plaintext
9 years ago
|
#!/usr/bin/env bash
|
||
|
if [ -z "$3" ]; then
|
||
|
echo "Usage: $0 [commonname] [csr path] [key path]";
|
||
|
exit 1;
|
||
|
fi
|
||
|
|
||
|
openssl req -sha256 -keyout $3 -nodes -newkey rsa:2048 -out $2 -subj "/CN=$1"
|