Overview
Comment: | Added a note about generating primes taking a while |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
c3a7dbada84ecefd6e23f1a0705fbfd5 |
User & Date: | rkeene on 2016-12-12 18:50:38 |
Other Links: | manifest | tags |
Context
2016-12-12
| ||
22:10 | Updated to dynamically allocate mutexes and support being de-initialized check-in: abf861e4d5 user: rkeene tags: trunk | |
18:50 | Added a note about generating primes taking a while check-in: c3a7dbada8 user: rkeene tags: trunk | |
2016-12-10
| ||
05:12 | More clean-up and modernization check-in: 5fc38beddb user: rkeene tags: trunk | |
Changes
Modified gen_dh_params from [2fbb069da4] to [04b0a25d98].
︙ | ︙ | |||
98 99 100 101 102 103 104 105 106 107 108 109 | # Enable support for giving the same DH params each time if [ "$1" = 'fallback' ]; then gen_dh_params_fallback && exit 0 exit 1 fi gen_dh_params_openssl && exit 0 gen_dh_params_remote && exit 0 gen_dh_params_fallback && exit 0 exit 1 | > > > > | 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 |