Implemented the PRF_KEYED_SHA1 algorithm in the openssl plugin

This commit is contained in:
Martin Willi
2010-03-08 13:16:12 +01:00
parent 33e4ee59ed
commit 40f130dab3
6 changed files with 208 additions and 12 deletions
+6 -5
View File
@@ -208,7 +208,6 @@ fi
if test x$eap_aka = xtrue; then
fips_prf=true;
sha1=true;
simaka=true;
fi
@@ -218,7 +217,9 @@ if test x$eap_sim = xtrue; then
fi
if test x$fips_prf = xtrue; then
sha1=true;
if test x$openssl = xfalse; then
sha1=true;
fi
fi
if test x$smp = xtrue; then
@@ -676,9 +677,6 @@ if test x$md5 = xtrue; then
libstrongswan_plugins=${libstrongswan_plugins}" md5"
pluto_plugins=${pluto_plugins}" md5"
fi
if test x$fips_prf = xtrue; then
libstrongswan_plugins=${libstrongswan_plugins}" fips-prf"
fi
if test x$random = xtrue; then
libstrongswan_plugins=${libstrongswan_plugins}" random"
pluto_plugins=${pluto_plugins}" random"
@@ -730,6 +728,9 @@ if test x$gcrypt = xtrue; then
libstrongswan_plugins=${libstrongswan_plugins}" gcrypt"
pluto_plugins=${pluto_plugins}" gcrypt"
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