Skip to content

Commit

Permalink
[CRYPTO] authenc: Select HASH in Kconfig
Browse files Browse the repository at this point in the history
i get here:

----
  LD      vmlinux
  SYSMAP  System.map
  SYSMAP  .tmp_System.map
  Building modules, stage 2.
  MODPOST 226 modules
ERROR: "crypto_hash_type" [crypto/authenc.ko] undefined!
make[1]: *** [__modpost] Error 1
make: *** [modules] Error 2
---

which fails because crypto_hash_type is declared in crypto/hash.c. You might wanna
fix it like so:

Signed-off-by: Borislav Petkov <[email protected]>
Signed-off-by: Herbert Xu <[email protected]>
  • Loading branch information
Borislav Petkov authored and herbertx committed Jan 10, 2008
1 parent f17922b commit 5e55311
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions crypto/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -532,6 +532,7 @@ config CRYPTO_AUTHENC
tristate "Authenc support"
select CRYPTO_AEAD
select CRYPTO_MANAGER
select CRYPTO_HASH
help
Authenc: Combined mode wrapper for IPsec.
This is required for IPSec.
Expand Down

0 comments on commit 5e55311

Please sign in to comment.