diff --git a/INSTALL b/INSTALL index 08d23682..0e209d60 100644 --- a/INSTALL +++ b/INSTALL @@ -21,7 +21,7 @@ dependencies are not desired. - libgcrypt >= 1.8.0 - libsodium >= 1.0.4 - libkcapi >= 1.0.0 -- Botan >= 2.19.0 +- Botan >= 3.0.0 - OpenSSL >= 3.2.0 Optionally, multipath device detection requires libudev and running udev diff --git a/configure.ac b/configure.ac index 2abcbf38..f5215405 100644 --- a/configure.ac +++ b/configure.ac @@ -274,9 +274,9 @@ elif test "$with_crypto" = "libkcapi"; then cryptoproviderversion=`${PKG_CONFIG} libkcapi --modversion` elif test "$with_crypto" = "botan"; then cryptoprovider="botan" - PKG_CHECK_MODULES(BOTAN, [botan-2 >= 2.19.0]) + PKG_CHECK_MODULES(BOTAN, [botan-3 >= 3.0.0]) CRYPTOPROVIDER_BOTAN=1 - cryptoproviderversion=`${PKG_CONFIG} botan-2 --modversion` + cryptoproviderversion=`${PKG_CONFIG} botan-3 --modversion` elif test "$with_crypto" = "openssl"; then cryptoprovider="openssl" PKG_CHECK_MODULES(OPENSSL, [libcrypto >= 3.2.0])