Differences From Artifact [2fbb069da4]:
- Executable file gen_dh_params — part of check-in [66023e665f] at 2016-12-08 08:50:46 on branch trunk — Added a consolidated check for pre-OpenSSL 1.1 API usage (user: rkeene, size: 2951) [annotate] [blame] [check-ins using]
To Artifact [78d63b562d]:
- Executable file gen_dh_params — part of check-in [a7c535ae28] at 2016-12-13 05:16:36 on branch trunk — Updated to indicate that this will take a while on stderr -- otherwise it just gets redirected to the file (user: rkeene, size: 3115) [annotate] [blame] [check-ins using] [more...]
︙ | |||
98 99 100 101 102 103 104 105 106 107 108 109 | 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 | + + + + | # Enable support for giving the same DH params each time if [ "$1" = 'fallback' ]; then gen_dh_params_fallback && exit 0 exit 1 fi echo "*****************************" >&2 echo "** Generating DH Primes. **" >&2 echo "** This will take a while. **" >&2 echo "*****************************" >&2 gen_dh_params_openssl && exit 0 gen_dh_params_remote && exit 0 gen_dh_params_fallback && exit 0 exit 1 |