File tree Expand file tree Collapse file tree 5 files changed +591
-8
lines changed
Expand file tree Collapse file tree 5 files changed +591
-8
lines changed Original file line number Diff line number Diff line change @@ -63,6 +63,7 @@ CONFIG_COMPILER_OPTIMIZATION_PERF
6363CONFIG_COMPILER_OPTIMIZATION_SIZE
6464CONFIG_CRYPTO_AES
6565CONFIG_CRYPTO_CBC
66+ CONFIG_CRYPTO_CCM
6667CONFIG_CRYPTO_CTR
6768CONFIG_CRYPTO_DH
6869CONFIG_CRYPTO_DH_RFC7919_GROUPS
Original file line number Diff line number Diff line change @@ -10252,6 +10252,10 @@ then
1025210252 AM_CFLAGS="$AM_CFLAGS -DLINUXKM_LKCAPI_REGISTER_AESGCM" ;;
1025310253 'rfc4106(gcm(aes))') test "$ENABLED_AESGCM" != "no" || AC_MSG_ERROR ( [ linuxkm-lkcapi-register ${lkcapi_alg}: AES-GCM implementation not enabled.] )
1025410254 AM_CFLAGS="$AM_CFLAGS -DLINUXKM_LKCAPI_REGISTER_AESGCM_RFC4106" ;;
10255+ 'ccm(aes)') test "$ENABLED_AESCCM" != "no" || AC_MSG_ERROR ( [ linuxkm-lkcapi-register ${lkcapi_alg}: AES-CCM implementation not enabled.] )
10256+ AM_CFLAGS="$AM_CFLAGS -DLINUXKM_LKCAPI_REGISTER_AESCCM" ;;
10257+ 'rfc4309(ccm(aes))') test "$ENABLED_AESCCM" != "no" || AC_MSG_ERROR ( [ linuxkm-lkcapi-register ${lkcapi_alg}: AES-CCM implementation not enabled.] )
10258+ AM_CFLAGS="$AM_CFLAGS -DLINUXKM_LKCAPI_REGISTER_AESCCM_RFC4309" ;;
1025510259 'xts(aes)') test "$ENABLED_AESXTS" != "no" || AC_MSG_ERROR ( [ linuxkm-lkcapi-register ${lkcapi_alg}: AES-XTS implementation not enabled.] )
1025610260 test "$ENABLED_AESXTS_STREAM" != "no" || AC_MSG_ERROR ( [ linuxkm-lkcapi-register ${lkcapi_alg}: --enable-aesxts-stream is required for LKCAPI.] )
1025710261 AM_CFLAGS="$AM_CFLAGS -DLINUXKM_LKCAPI_REGISTER_AESXTS" ;;
@@ -10296,6 +10300,9 @@ then
1029610300 '-gcm(aes)') AM_CFLAGS="$AM_CFLAGS -DLINUXKM_LKCAPI_DONT_REGISTER_AESGCM" ;;
1029710301 '-rfc4106(gcm(aes))')
1029810302 AM_CFLAGS="$AM_CFLAGS -DLINUXKM_LKCAPI_DONT_REGISTER_AESGCM_RFC4106" ;;
10303+ '-ccm(aes)') AM_CFLAGS="$AM_CFLAGS -DLINUXKM_LKCAPI_DONT_REGISTER_AESCCM" ;;
10304+ '-rfc4309(ccm(aes))')
10305+ AM_CFLAGS="$AM_CFLAGS -DLINUXKM_LKCAPI_DONT_REGISTER_AESCCM_RFC4309" ;;
1029910306 '-xts(aes)') AM_CFLAGS="$AM_CFLAGS -DLINUXKM_LKCAPI_DONT_REGISTER_AESXTS" ;;
1030010307 '-ctr(aes)') AM_CFLAGS="$AM_CFLAGS -DLINUXKM_LKCAPI_DONT_REGISTER_AESCTR" ;;
1030110308 '-ofb(aes)') AM_CFLAGS="$AM_CFLAGS -DLINUXKM_LKCAPI_DONT_REGISTER_AESOFB" ;;
You can’t perform that action at this time.
0 commit comments