blob: 67ae7c6b1390632735c5d26bade2cb2c570a9a43 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
if PACKAGE_fastd
menu "Configuration"
config FASTD_ENABLE_METHOD_CIPHER_TEST
bool "Enable cipher-test method provider"
config FASTD_ENABLE_METHOD_COMPOSED_GMAC
bool "Enable composed-gmac method provider"
select FASTD_ENABLE_MAC_GHASH
config FASTD_ENABLE_METHOD_COMPOSED_UMAC
bool "Enable composed-umac method provider"
select FASTD_ENABLE_MAC_UHASH
default y
config FASTD_ENABLE_METHOD_GENERIC_GMAC
bool "Enable generic-gmac method provider"
select FASTD_ENABLE_MAC_GHASH
config FASTD_ENABLE_METHOD_GENERIC_POLY1305
bool "Enable generic-poly1305 method provider"
config FASTD_ENABLE_METHOD_GENERIC_UMAC
bool "Enable generic-umac method provider"
select FASTD_ENABLE_MAC_UHASH
default y
config FASTD_ENABLE_METHOD_NULL
bool "Enable null method"
default y
config FASTD_ENABLE_METHOD_NULL_L2TP
bool "Enable null@l2tp method"
default y
config FASTD_ENABLE_CIPHER_NULL
bool "Enable the null cipher"
default y
config FASTD_ENABLE_CIPHER_SALSA20
bool "Enable the Salsa20 cipher"
config FASTD_ENABLE_CIPHER_SALSA2012
bool "Enable the Salsa20/12 cipher"
default y
config FASTD_ENABLE_MAC_GHASH
bool
config FASTD_ENABLE_MAC_UHASH
bool
config FASTD_WITH_CAPABILITIES
bool "Enable POSIX capability support"
config FASTD_WITH_CMDLINE_USER
bool "Include support for setting user/group related options on the command line"
config FASTD_WITH_CMDLINE_LOGGING
bool "Include support for setting logging related options on the command line"
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"
config FASTD_WITH_CMDLINE_COMMANDS
bool "Include support for setting handler scripts (e.g. --on-up) on the command line"
config FASTD_WITH_DYNAMIC_PEERS
bool "Include support for dynamic peers (using on-verify handlers)"
config FASTD_WITH_STATUS_SOCKET
bool "Include support for status sockets"
default y
config FASTD_WITH_OFFLOAD_L2TP
bool "Enable L2TP offloading"
default y
endmenu
endif
|