Overview
Comment: | Updated to generate DH parameters more dynamically |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | tls-1-7 |
Files: | files | file ages | folders |
SHA1: |
3d5e70d1d57b32ffc890cf789718629e |
User & Date: | rkeene on 2016-12-01 21:36:04 |
Other Links: | branch diff | manifest | tags |
Context
2016-12-01
| ||
21:51 | Updated to support a deterministic mode check-in: bf7f82b5e8 user: rkeene tags: tls-1-7 | |
21:36 | Updated to generate DH parameters more dynamically check-in: 3d5e70d1d5 user: rkeene tags: tls-1-7 | |
20:51 | Removed unused source file check-in: 2f2650a648 user: rkeene tags: tls-1-7 | |
Changes
Modified .fossil-settings/ignore-glob from [7f5dc4586d] to [103e76cae5].
︙ | |||
13 14 15 16 17 18 19 | 13 14 15 16 17 18 19 20 | + | tcltls.a tls.o tlsBIO.o tlsIO.o tlsX509.o tls.tcl.h build/work dh_params.h |
Modified Makefile.in from [767056b489] to [e516302d1e].
1 2 3 4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 | - + - + + + + + + + | CC = @CC@ AR = @AR@ RANLIB = @RANLIB@ CFLAGS = @CFLAGS@ @SHOBJFLAGS@ |
Added gen_dh_params version [a7290cba5e].
Modified tls.c from [b151916d75] to [05e974345e].
︙ | |||
75 76 77 78 79 80 81 | 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 | - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - | #define ENABLED(flag, mask) (((flag) & (mask)) == (mask)) /* * Static data structures */ #ifndef OPENSSL_NO_DH |
︙ |