summaryrefslogtreecommitdiff
path: root/meson_options.txt
diff options
context:
space:
mode:
authorSami Kerola <kerolasa@iki.fi>2019-12-01 16:11:03 +0000
committerSami Kerola <kerolasa@iki.fi>2019-12-04 19:59:02 +0000
commit214ed83afcce7f08406b17144040891eb40113cf (patch)
tree8a0ee6f011b699abba257b40a1f9d107b708aafc /meson_options.txt
parent562e0d570d93cfcfdebab1215a2f04efa64a24f8 (diff)
downloadiputils-214ed83afcce7f08406b17144040891eb40113cf.tar.gz
common: copy md5 implementation to iputils project
This allows avoiding linking to crypto libraries, or expect kernel api to provide md5 functionality. Notice that earlier use of kernel api could result to binary zero md5 values being used, that is not how RFC4620 tells subject names should be used. See bug report for details. Reported-by: Noah Meyerhans <noahm@debian.org> Addresses: https://github.com/iputils/iputils/issues/239 Reference: https://tools.ietf.org/html/rfc4620 Reviewed-by: Petr Vorel <pvorel@suse.cz> Signed-off-by: Sami Kerola <kerolasa@iki.fi>
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt4
1 files changed, 0 insertions, 4 deletions
diff --git a/meson_options.txt b/meson_options.txt
index 4129fe5..aade675 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -4,10 +4,6 @@ option('USE_CAP', type : 'boolean', value : true,
option('USE_IDN', type : 'boolean', value : true,
description : 'IDN support (with libidn2)')
-option('USE_CRYPTO', type : 'combo',
- choices : [ 'none', 'gcrypt', 'nettle', 'openssl', 'kernel' ], value : 'openssl',
- description: 'Crypto library support')
-
option('BUILD_ARPING', type : 'boolean', value : true,
description : 'Build arping')