From 83e52fd12d6cc4bd54f65df1fad907ef70f68541 Mon Sep 17 00:00:00 2001 From: Martin Willi Date: Tue, 20 Jul 2010 12:35:45 +0200 Subject: [PATCH] Register hmac/xcbc algorithms after potentially underlying PKCS#11 --- configure.in | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/configure.in b/configure.in index 40106eb9d9..dc73e39f2f 100644 --- a/configure.in +++ b/configure.in @@ -760,13 +760,6 @@ fi if test x$fips_prf = xtrue; then libstrongswan_plugins=${libstrongswan_plugins}" fips-prf" fi -if test x$xcbc = xtrue; then - libstrongswan_plugins=${libstrongswan_plugins}" xcbc" -fi -if test x$hmac = xtrue; then - libstrongswan_plugins=${libstrongswan_plugins}" hmac" - pluto_plugins=${pluto_plugins}" hmac" -fi if test x$gmp = xtrue; then libstrongswan_plugins=${libstrongswan_plugins}" gmp" pluto_plugins=${pluto_plugins}" gmp" @@ -777,6 +770,13 @@ fi if test x$pkcs11 = xtrue; then libstrongswan_plugins=${libstrongswan_plugins}" pkcs11" fi +if test x$xcbc = xtrue; then + libstrongswan_plugins=${libstrongswan_plugins}" xcbc" +fi +if test x$hmac = xtrue; then + libstrongswan_plugins=${libstrongswan_plugins}" hmac" + pluto_plugins=${pluto_plugins}" hmac" +fi if test x$xauth = xtrue; then pluto_plugins=${pluto_plugins}" xauth" fi