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 [04b0a25d98]:
- Executable file gen_dh_params — part of check-in [c3a7dbada8] at 2016-12-12 18:50:38 on branch trunk — Added a note about generating primes taking a while (user: rkeene, size: 3099) [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 "*****************************" echo "** Generating DH Primes. **" echo "** This will take a while. **" echo "*****************************" gen_dh_params_openssl && exit 0 gen_dh_params_remote && exit 0 gen_dh_params_fallback && exit 0 exit 1 |