mirror of
https://github.com/novatiq/packages.git
synced 2026-04-29 23:18:42 +01:00
Add fastd, a very small VPN daemon
This commit is contained in:
@@ -0,0 +1,82 @@
|
||||
menu "Configuration"
|
||||
depends on PACKAGE_fastd
|
||||
|
||||
config FASTD_ENABLE_METHOD_CIPHER_TEST
|
||||
bool "Enable cipher-test method provider"
|
||||
depends on PACKAGE_fastd
|
||||
default n
|
||||
|
||||
config FASTD_ENABLE_METHOD_COMPOSED_GMAC
|
||||
bool "Enable composed-gmac method provider"
|
||||
depends on PACKAGE_fastd
|
||||
default y
|
||||
|
||||
config FASTD_ENABLE_METHOD_GENERIC_GMAC
|
||||
bool "Enable generic-gmac method provider"
|
||||
depends on PACKAGE_fastd
|
||||
default y
|
||||
|
||||
config FASTD_ENABLE_METHOD_GENERIC_POLY1305
|
||||
bool "Enable generic-poly1305 method provider"
|
||||
depends on PACKAGE_fastd
|
||||
default n
|
||||
|
||||
config FASTD_ENABLE_METHOD_NULL
|
||||
bool "Enable null method"
|
||||
depends on PACKAGE_fastd
|
||||
default y
|
||||
|
||||
config FASTD_ENABLE_METHOD_XSALSA20_POLY1305
|
||||
bool "Enable xsalsa20-poly1305 method"
|
||||
depends on PACKAGE_fastd
|
||||
default n
|
||||
|
||||
|
||||
config FASTD_ENABLE_CIPHER_AES128_CTR
|
||||
bool "Enable the AES128-CTR cipher"
|
||||
depends on PACKAGE_fastd
|
||||
default n
|
||||
|
||||
config FASTD_ENABLE_CIPHER_NULL
|
||||
bool "Enable the null cipher"
|
||||
depends on PACKAGE_fastd
|
||||
default y
|
||||
|
||||
config FASTD_ENABLE_CIPHER_SALSA20
|
||||
bool "Enable the Salsa20 cipher"
|
||||
depends on PACKAGE_fastd
|
||||
default n
|
||||
|
||||
config FASTD_ENABLE_CIPHER_SALSA2012
|
||||
bool "Enable the Salsa20/12 cipher"
|
||||
depends on PACKAGE_fastd
|
||||
default y
|
||||
|
||||
|
||||
config FASTD_ENABLE_MAC_GHASH
|
||||
bool "Enable the GHASH message authentication code"
|
||||
depends on PACKAGE_fastd
|
||||
default y
|
||||
|
||||
|
||||
config FASTD_WITH_CMDLINE_USER
|
||||
bool "Include support for setting user/group related options on the command line"
|
||||
depends on PACKAGE_fastd
|
||||
default n
|
||||
|
||||
config FASTD_WITH_CMDLINE_LOGGING
|
||||
bool "Include support for setting logging related options on the command line"
|
||||
depends on PACKAGE_fastd
|
||||
default n
|
||||
|
||||
config FASTD_WITH_CMDLINE_OPERATION
|
||||
bool "Include support for setting options related to the VPN operation (like mode, interface, encryption method) on the command line"
|
||||
depends on PACKAGE_fastd
|
||||
default n
|
||||
|
||||
config FASTD_WITH_CMDLINE_COMMANDS
|
||||
bool "Include support for setting handler scripts (e.g. --on-up) on the command line"
|
||||
depends on PACKAGE_fastd
|
||||
default n
|
||||
|
||||
endmenu
|
||||
Reference in New Issue
Block a user