diff options
author | U-Z690-A\user <jrayhawk@omgwallhack.org> | 2022-06-28 18:44:57 -0700 |
---|---|---|
committer | U-Z690-A\user <jrayhawk@omgwallhack.org> | 2022-06-28 18:44:57 -0700 |
commit | 537cb1c3cf10ba3552b03c43fb053bde9cca2440 (patch) | |
tree | 098778a7f6ed8ce8a4f62302725ecfe58fe75a2a /configure.sh | |
parent | 49fe6c0218d58f4c62e8b7adfe278b52d7975eab (diff) | |
download | cash-537cb1c3cf10ba3552b03c43fb053bde9cca2440.tar.gz cash-537cb1c3cf10ba3552b03c43fb053bde9cca2440.zip |
Add automatic extended key usage detection
extendedKeyUsage is needed for some automatic certificate selection on
Windows. We attempt to detect either clientAuth or serverAuth based on
subjAltName and commonName.
Diffstat (limited to 'configure.sh')
-rw-r--r-- | configure.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.sh b/configure.sh index 9d9d156..54e9577 100644 --- a/configure.sh +++ b/configure.sh @@ -11,7 +11,7 @@ export CN="Joe Rayhawk" # Common Name export E="jrayhawk+ssl@omgwallhack.org" # Email; used in certs and for From: and CC: in ./mailcert.sh usage export OPENSSL_CONFIG="openssl.cnf" # For advanced customization (not suggested) - +#export EKU="clientAuth, serverAuth" # we try to dynamically determine this in signcsr.sh export EMAIL_DEFAULT_DOMAIN="omgwallhack.org" # ./mailcert.sh uses this as a user's domain if nothing more obvious is available if [ -e ./local.cfg ]; then |