gluon-packages/net/fastd/Config.in

37 lines
1.1 KiB
Plaintext
Raw Normal View History

2012-07-04 17:04:15 +02:00
menu "Configuration"
depends on PACKAGE_fastd
2012-09-21 17:17:00 +02:00
config FASTD_ENABLE_METHOD_XSALSA20_POLY1305
bool "Enable xsalsa20-poly1305 method"
2012-07-04 17:04:15 +02:00
depends on PACKAGE_fastd
2012-09-21 17:17:00 +02:00
default y
2012-07-04 17:04:15 +02:00
2012-09-21 17:17:00 +02:00
config FASTD_ENABLE_METHOD_AES128_GCM
bool "Enable aes128-gcm method"
depends on PACKAGE_fastd
select FASTD_ENABLE_CRYPTO_AES128CTR_NACL if !FASTD_ENABLE_CRYPTO_AES128CTR_LINUX
select FASTD_ENABLE_CRYPTO_GHASH_BUILTIN if !FASTD_ENABLE_CRYPTO_GHASH_LINUX
default n
2012-09-21 17:17:00 +02:00
config FASTD_ENABLE_CRYPTO_AES128CTR_NACL
bool "Include the AES128-CTR implementation from the NaCl library"
depends on FASTD_ENABLE_METHOD_AES128_GCM
2012-09-21 17:17:00 +02:00
default y
config FASTD_ENABLE_CRYPTO_AES128CTR_LINUX
bool "Support using the AES128-CTR implementation in the Linux kernel"
depends on FASTD_ENABLE_METHOD_AES128_GCM
2012-09-21 17:17:00 +02:00
default y
config FASTD_ENABLE_CRYPTO_GHASH_BUILTIN
bool "Include the built-in GHASH implementation"
depends on FASTD_ENABLE_METHOD_AES128_GCM
2012-09-21 17:17:00 +02:00
default y
config FASTD_ENABLE_CRYPTO_GHASH_LINUX
bool "Support using the GHASH implementation in the Linux kernel"
depends on FASTD_ENABLE_METHOD_AES128_GCM
2012-09-21 17:17:00 +02:00
default y
2012-07-04 17:04:15 +02:00
endmenu