tests/external-signed-ca-../external-ca.sh: Password too weak in FIPS mode

The password that is used in the script to generate the CA and also sign
the CSR is not strong enough in FIPS mode. In normal mode the password was
ok, though.

In FIPS mode the password needs to have at least one upper, lower, digit
and a special char.
This commit is contained in:
Thomas Woerner
2020-07-21 12:40:02 +02:00
parent 5364cf8046
commit ffba096dc5

View File

@@ -8,7 +8,7 @@ if [ -z "$master" ]; then
exit 0;
fi
PASSWORD="SomeCApassword"
PASSWORD="SomeCApassword.123"
DBDIR="${master}-nssdb"
PWDFILE="$DBDIR/pwdfile.txt"
NOISE="$DBDIR/noise.txt"