You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

87 lines
2.1 KiB

  1. menu "Configuration"
  2. depends on PACKAGE_fastd
  3. config FASTD_ENABLE_METHOD_CIPHER_TEST
  4. bool "Enable cipher-test method provider"
  5. depends on PACKAGE_fastd
  6. default n
  7. config FASTD_ENABLE_METHOD_COMPOSED_GMAC
  8. bool "Enable composed-gmac method provider"
  9. depends on PACKAGE_fastd
  10. default y
  11. config FASTD_ENABLE_METHOD_GENERIC_GMAC
  12. bool "Enable generic-gmac method provider"
  13. depends on PACKAGE_fastd
  14. default y
  15. config FASTD_ENABLE_METHOD_GENERIC_POLY1305
  16. bool "Enable generic-poly1305 method provider"
  17. depends on PACKAGE_fastd
  18. default n
  19. config FASTD_ENABLE_METHOD_NULL
  20. bool "Enable null method"
  21. depends on PACKAGE_fastd
  22. default y
  23. config FASTD_ENABLE_METHOD_XSALSA20_POLY1305
  24. bool "Enable xsalsa20-poly1305 method"
  25. depends on PACKAGE_fastd
  26. default n
  27. config FASTD_ENABLE_CIPHER_AES128_CTR
  28. bool "Enable the AES128-CTR cipher"
  29. depends on PACKAGE_fastd
  30. default n
  31. config FASTD_ENABLE_CIPHER_NULL
  32. bool "Enable the null cipher"
  33. depends on PACKAGE_fastd
  34. default y
  35. config FASTD_ENABLE_CIPHER_SALSA20
  36. bool "Enable the Salsa20 cipher"
  37. depends on PACKAGE_fastd
  38. default n
  39. config FASTD_ENABLE_CIPHER_SALSA2012
  40. bool "Enable the Salsa20/12 cipher"
  41. depends on PACKAGE_fastd
  42. default y
  43. config FASTD_ENABLE_MAC_GHASH
  44. bool "Enable the GHASH message authentication code"
  45. depends on PACKAGE_fastd
  46. default y
  47. config FASTD_WITH_CMDLINE_USER
  48. bool "Include support for setting user/group related options on the command line"
  49. depends on PACKAGE_fastd
  50. default n
  51. config FASTD_WITH_CMDLINE_LOGGING
  52. bool "Include support for setting logging related options on the command line"
  53. depends on PACKAGE_fastd
  54. default n
  55. config FASTD_WITH_CMDLINE_OPERATION
  56. bool "Include support for setting options related to the VPN operation (like mode, interface, encryption method) on the command line"
  57. depends on PACKAGE_fastd
  58. default n
  59. config FASTD_WITH_CMDLINE_COMMANDS
  60. bool "Include support for setting handler scripts (e.g. --on-up) on the command line"
  61. depends on PACKAGE_fastd
  62. default n
  63. config FASTD_WITH_VERIFY
  64. bool "Include support for on-verify handlers"
  65. depends on PACKAGE_fastd
  66. default n
  67. endmenu