Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-08-17 | Update DANE draft docs | Jeremy Harris | |
2014-08-17 | Unbreak utf8clean testcase. | Jeremy Harris | |
Broken by my compile quitening; the issue was a variable declared local in a loop body and used for carrying data from one iteration to the next. I'd blindly added an initialiser, destroying the data. However, I *think* that compilers might be at liberty to not use the same location for separate iterations; if so the code was broken (and only worked by chance). Fix by moving the declaration outside the loop. | |||
2014-08-17 | Properly detect/set test variables from scripts. | Todd Lyons | |
2014-08-17 | Override an unchanged default hosts_request_ocsp when DANE is used | Jeremy Harris | |
2014-08-17 | Feature compile-guard | Jeremy Harris | |
2014-08-17 | Add observability variables and provision for avoiding OCSP conflicts | Jeremy Harris | |
2014-08-16 | Break out dane code to separate functions | Jeremy Harris | |
2014-08-15 | Compiler quietening | Jeremy Harris | |
2014-08-14 | Fix fakens TLSA generation and DANE TLSA lookup | Jeremy Harris | |
2014-08-14 | Shuffle test order | Jeremy Harris | |
2014-08-14 | Add testcase for TLSA record access | Jeremy Harris | |
2014-08-14 | Fix non-dane build | Jeremy Harris | |
2014-08-10 | Enable OCSP | Jeremy Harris | |
2014-08-10 | Add (2 0 1) test | Jeremy Harris | |
2014-08-10 | Change CV= log line element for dane-verified cert | Jeremy Harris | |
2014-08-10 | Capture the knowlege that verification succeeded | Jeremy Harris | |
2014-08-10 | Add direct-A test | Jeremy Harris | |
2014-08-10 | Verifiable conn with DANE-EE(3) / SPKI(1) / SHA2-512(2) | Jeremy Harris | |
2014-08-10 | Diffs for draft 11 | Jeremy Harris | |
2014-08-10 | Copy latest SMTP-with-DANE - draft 11 | Jeremy Harris | |
2014-08-10 | Add support in the fakens utility for TLSA records | Jeremy Harris | |
2014-08-10 | Add support in the fakens utility for marking records as "secure" | Jeremy Harris | |
and returning an AD bit for lookups. | |||
2014-08-10 | On a host lookup name->MX->A->ip sequence, require both stages to | Jeremy Harris | |
be dnssec before declaring the lookup was secure. | |||
2014-08-09 | Ignore dane-related debug out in non-dane testcases | Jeremy Harris | |
2014-08-08 | Test development | Jeremy Harris | |
2014-08-08 | Testsuite basics. | Jeremy Harris | |
Not actually excercising DANE yet, this will take additions in the fakedns and probably changes in certificates. | |||
2014-08-07 | Sketch in library interface | Jeremy Harris | |
2014-08-07 | General discussion of DANE usage | Jeremy Harris | |
2014-08-01 | Fix development-testing induced crash on second use | Jeremy Harris | |
2014-08-01 | Basic DANE entry points | Jeremy Harris | |
2014-07-31 | Add interface documentation for the DANE library | Jeremy Harris | |
2014-07-29 | Coding style closer to project norms | Jeremy Harris | |
2014-07-29 | Add DANE RFC (6698) for reference | Todd Lyons | |
2014-07-29 | Add current draft of SMTP with DANE | Todd Lyons | |
2014-07-29 | Create a hosts_try_dane transport option, does nothing yet | Todd Lyons | |
2014-07-29 | Framework to build dane support | Todd Lyons | |
2014-07-29 | Fix doc parse error | Todd Lyons | |
2014-07-26 | Document acl args variables in main variables section | Jeremy Harris | |
2014-07-24 | Fix "default config" section wrt. rfc1413_hosts | Jeremy Harris | |
2014-07-23 | Bug 1506: document change made | Todd Lyons | |
2014-07-23 | Bug 1506: Silence static checkers. | Lars Mueller | |
Re-adds a return NULL which was removed because it was redundant. Static checkers don't parse the logic, so adding it back to make them happy. | |||
2014-07-23 | Bug 1506: Fix static typechecker output | Todd Lyons | |
The end of the function can never be reached because the switch is only reached if the value it is checking is valid. Putting this return silences the warnings. | |||
2014-07-23 | Update version numbers, clean docs for next release | Todd Lyons | |
2014-07-22 | Massage coding style to project norm | Jeremy Harris | |
2014-07-21 | Documentation/Tests for CVE-2014-2972 fixexim-4_83 | Todd Lyons | |
2014-07-16 | Only expand integers for integer math once | Tony Finch | |
2014-07-15 | Fix regex for Suse when converting spec to ASCII | Todd Lyons | |
2014-07-14 | Fix parsing of mime headers | Jeremy Harris | |
RFC2045 allows parameter values to be quoted; an embedded semicolon must then not terminate the parameter. | |||
2014-07-14 | DNSSEC: fix clang warning re && in || precedence | Phil Pennock | |
I looked and AFAICT the compiler guidance gives the correct logical binding for the code intention. ``` dnsdb.c:362:32: warning: '&&' within '||' [-Wlogical-op-parentheses] || dnssec_mode == DEFER && !dns_is_secure(&dnsa) ~~ ~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~ dnsdb.c:362:32: note: place parentheses around the '&&' expression to silence this warning || dnssec_mode == DEFER && !dns_is_secure(&dnsa) ^ ( ) ``` | |||
2014-07-14 | MacOS: fix clang redef warning | Phil Pennock | |