Config.in 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. config BR2_PACKAGE_LIBKCAPI
  2. bool "libkcapi"
  3. depends on BR2_TOOLCHAIN_HAS_SYNC_4
  4. help
  5. Linux Kernel Crypto API userspace interface library
  6. http://www.chronox.de/libkcapi.html
  7. if BR2_PACKAGE_LIBKCAPI
  8. config BR2_PACKAGE_LIBKCAPI_ASYM
  9. bool "build asymmetric ciphers library"
  10. help
  11. Using this library requires the Linux kernel to be patched
  12. with libkcapi Linux kernel patches found in libkcapi
  13. kernel-patches/ directory.
  14. config BR2_PACKAGE_LIBKCAPI_DGSTAPP
  15. bool "build dgst application"
  16. config BR2_PACKAGE_LIBKCAPI_ENCAPP
  17. bool "build enc application"
  18. config BR2_PACKAGE_LIBKCAPI_HASHER
  19. bool "build hasher application"
  20. depends on !BR2_STATIC_LIBS # dlfcn.h
  21. comment "hasher application needs a toolchain w/ dynamic library"
  22. depends on BR2_STATIC_LIBS
  23. config BR2_PACKAGE_LIBKCAPI_KPP
  24. bool "build KPP library"
  25. help
  26. Using this library requires the Linux kernel to be patched
  27. with libkcapi Linux kernel patches found in libkcapi
  28. kernel-patches/ directory.
  29. config BR2_PACKAGE_LIBKCAPI_RNGAPP
  30. bool "build rng read application"
  31. config BR2_PACKAGE_LIBKCAPI_SPEED
  32. bool "build speed-test program"
  33. config BR2_PACKAGE_LIBKCAPI_TEST
  34. bool "build test program"
  35. depends on BR2_USE_MMU # fork()
  36. endif