diff options
Diffstat (limited to '')
-rwxr-xr-x | easy-rsa/build-req | 18 | ||||
-rwxr-xr-x | easy-rsa/build-req-pass | 18 |
2 files changed, 36 insertions, 0 deletions
diff --git a/easy-rsa/build-req b/easy-rsa/build-req new file mode 100755 index 0000000..30f62f5 --- /dev/null +++ b/easy-rsa/build-req @@ -0,0 +1,18 @@ +#!/bin/sh + +# +# Build a certificate signing request and private key. Use this +# when your root certificate and key is not available locally. +# + +if test $# -ne 1; then + echo "usage: build-req <name>"; + exit 1 +fi + +if test $KEY_DIR; then + cd $KEY_DIR && \ + openssl req -days 3650 -nodes -new -keyout $1.key -out $1.csr -config $KEY_CONFIG +else + echo you must define KEY_DIR +fi diff --git a/easy-rsa/build-req-pass b/easy-rsa/build-req-pass new file mode 100755 index 0000000..829b286 --- /dev/null +++ b/easy-rsa/build-req-pass @@ -0,0 +1,18 @@ +#!/bin/sh + +# +# Like build-req, but protect your private key +# with a password. +# + +if test $# -ne 1; then + echo "usage: build-req-pass <name>"; + exit 1 +fi + +if test $KEY_DIR; then + cd $KEY_DIR && \ + openssl req -days 3650 -new -keyout $1.key -out $1.csr -config $KEY_CONFIG +else + echo you must define KEY_DIR +fi |