Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | 03-May-2022 | - | ||||
docs/ | H | 03-May-2022 | - | 831 | 757 | |
tests/ | H | 03-May-2022 | - | 32,379 | 21,725 | |
Makefile.am | H A D | 04-Feb-2015 | 1.7 KiB | 49 | 38 | |
Makefile.in | H A D | 12-May-2015 | 49 KiB | 1,074 | 961 | |
README | H A D | 14-Nov-2012 | 1.1 KiB | 32 | 22 | |
base32.c | H A D | 24-Oct-2012 | 4.2 KiB | 185 | 113 | |
base64.c | H A D | 24-Oct-2012 | 4.1 KiB | 200 | 131 | |
base64.h | H A D | 24-Oct-2012 | 494 | 20 | 7 | |
dkim-atps.c | H A D | 04-Feb-2015 | 10.2 KiB | 482 | 366 | |
dkim-cache.c | H A D | 06-Dec-2013 | 10.9 KiB | 546 | 364 | |
dkim-cache.h | H A D | 25-Feb-2013 | 832 | 33 | 15 | |
dkim-canon.c | H A D | 03-May-2022 | 43.4 KiB | 2,149 | 1,484 | |
dkim-canon.h | H A D | 24-Oct-2012 | 1.6 KiB | 46 | 28 | |
dkim-dns.c | H A D | 14-Nov-2012 | 6.3 KiB | 333 | 194 | |
dkim-dns.h | H A D | 24-Oct-2012 | 672 | 23 | 12 | |
dkim-internal.h | H A D | 12-May-2015 | 3.6 KiB | 156 | 87 | |
dkim-keys.c | H A D | 04-Feb-2015 | 11.2 KiB | 507 | 364 | |
dkim-keys.h | H A D | 24-Oct-2012 | 564 | 21 | 8 | |
dkim-mailparse.c | H A D | 04-Feb-2015 | 12 KiB | 664 | 470 | |
dkim-mailparse.h | H A D | 04-Feb-2015 | 800 | 29 | 17 | |
dkim-report.c | H A D | 04-Feb-2015 | 6.6 KiB | 313 | 222 | |
dkim-report.h | H A D | 24-Oct-2012 | 499 | 23 | 9 | |
dkim-tables.c | H A D | 12-May-2015 | 7.1 KiB | 236 | 180 | |
dkim-tables.h | H A D | 12-May-2015 | 1.2 KiB | 49 | 32 | |
dkim-test.c | H A D | 04-Feb-2015 | 9.3 KiB | 493 | 353 | |
dkim-test.h | H A D | 24-Oct-2012 | 462 | 19 | 6 | |
dkim-types.h | H A D | 12-May-2015 | 9.9 KiB | 409 | 356 | |
dkim-util.c | H A D | 06-Dec-2013 | 11.2 KiB | 610 | 304 | |
dkim-util.h | H A D | 24-Oct-2012 | 1.6 KiB | 47 | 29 | |
dkim.c | H A D | 03-May-2022 | 197.9 KiB | 9,286 | 6,103 | |
dkim.h | H A D | 12-May-2015 | 51.8 KiB | 1,918 | 404 | |
opendkim.pc.in | H A D | 11-Oct-2012 | 439 | 16 | 12 | |
util.c | H A D | 06-Dec-2013 | 14.5 KiB | 928 | 603 | |
util.h | H A D | 24-Oct-2012 | 1.5 KiB | 46 | 31 |
README
1 2ENVIRONMENT VARIABLES 3===================== 4 5The following environment variables are checked and have some impact on 6what libdkim does: 7 8DKIM_TMPDIR directory in which temporary files are created; default is 9 /tmp 10 11 12SELF-TEST 13========= 14 15A number of self-test programs are included here for unit-testing the 16library. To run them, type "make check". A brief description of each 17test will be provided before its result. If the description is followed by 18the word SKIPPED, it means support for the function (e.g. an external 19library) to be tested was not available at compile-time and the test was 20not run. 21 22 23CRYPTO LIBRARIES 24================ 25 26Cryptography libraries, such as openssl and gnutls, that can be used with 27libopendkim may have initialization requirements. libopendkim will not 28initialize these libraries for you, as doing so may interfere with other 29aspects of the application calling this library. It is therefore the 30responsibility of the calling application to initailize the crypto library 31before attempting DKIM signing or validation, or unexpected errors can occur. 32