a2a915
From e1da251de9647872d776b70078556f4e3e21cad8 Mon Sep 17 00:00:00 2001
a2a915
From: Petr Mensik <pemensik@redhat.com>
a2a915
Date: Thu, 21 Feb 2019 12:36:17 +0100
a2a915
Subject: [PATCH] Disable autodetected ED448 algorithm support
a2a915
a2a915
Implementation is broken in bind, disabled also in more recent versions.
a2a915
Makes bin/tests/system/dnssec fail.
a2a915
---
a2a915
 configure.in | 9 +++++++--
a2a915
 1 file changed, 7 insertions(+), 2 deletions(-)
a2a915
a2a915
diff --git a/configure.in b/configure.in
a2a915
index 1397c50..475ab9e 100644
a2a915
--- a/configure.in
a2a915
+++ b/configure.in
a2a915
@@ -1964,6 +1964,9 @@ int main() {
a2a915
 }
a2a915
 ],
a2a915
 		[AC_MSG_RESULT(yes)
a2a915
+		# ED448 support is broken in BIND
a2a915
+		# https://gitlab.isc.org/isc-projects/bind9/issues/225
a2a915
+		# disable if autodetected, can be enabled by --with-eddsa=all
a2a915
 		have_ed448="yes"],
a2a915
 		[AC_MSG_RESULT(no)
a2a915
 		have_ed448="no"],
a2a915
@@ -1976,8 +1979,10 @@ int main() {
a2a915
 		esac
a2a915
 		case $have_ed448 in
a2a915
 		yes)
a2a915
-			AC_DEFINE(HAVE_OPENSSL_ED448, 1,
a2a915
-				  [Define if your OpenSSL version supports Ed448.])
a2a915
+		# ED448 support is broken in BIND
a2a915
+		# https://gitlab.isc.org/isc-projects/bind9/issues/225
a2a915
+		#	AC_DEFINE(HAVE_OPENSSL_ED448, 1,
a2a915
+		#		  [Define if your OpenSSL version supports Ed448.])
a2a915
 			;;	   
a2a915
 		*)
a2a915
 			;;
a2a915
-- 
a2a915
2.20.1
a2a915