xref: /linux/drivers/nvme/common/Kconfig (revision 26c8c2dddecb016a6115b30cf2cee633b311222b)
1# SPDX-License-Identifier: GPL-2.0-only
2
3config NVME_KEYRING
4       tristate
5       select KEYS
6
7config NVME_AUTH
8	tristate
9	select CRYPTO
10	select CRYPTO_DH
11	select CRYPTO_DH_RFC7919_GROUPS
12	select CRYPTO_LIB_SHA256
13	select CRYPTO_LIB_SHA512
14
15config NVME_AUTH_KUNIT_TEST
16	tristate "KUnit tests for NVMe authentication" if !KUNIT_ALL_TESTS
17	depends on KUNIT && NVME_AUTH
18	default KUNIT_ALL_TESTS
19	help
20	  Enable KUnit tests for some of the common code for NVMe over Fabrics
21	  In-Band Authentication.
22