summaryrefslogtreecommitdiffstats
path: root/rules/libkcapi.in
blob: 0fa299c4499eb6ee123bb4352386d774bdd43de8 (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
## SECTION=system_libraries

menuconfig LIBKCAPI
	tristate
	prompt "libkcapi                      "
	help
	  The Linux kernel exports a Netlink interface of type AF_ALG to
	  allow user space to utilize the kernel crypto API.

if LIBKCAPI

config LIBKCAPI_MD5SUM
	bool
	depends on !COREUTILS_MD5SUM && !BUSYBOX_MD5SUM || ALLYES
	prompt "md5sum"
	help
	  support md5sum cmdline util

config LIBKCAPI_SHA1SUM
	bool
	depends on !COREUTILS_SHA1SUM && !BUSYBOX_SHA1SUM || ALLYES
	prompt "sha1sum"
	help
	  support sha1sum cmdline util

config LIBKCAPI_SHA224SUM
	bool
	depends on !COREUTILS_SHA224SUM || ALLYES
	prompt "sha224sum"
	help
	  support sha224sum cmdline util

config LIBKCAPI_SHA256SUM
	bool
	depends on !COREUTILS_SHA256SUM && !BUSYBOX_SHA256SUM || ALLYES
	prompt "sha256sum"
	help
	  support sha256sum cmdline util

config LIBKCAPI_SHA384SUM
	bool
	depends on !COREUTILS_SHA384SUM || ALLYES
	prompt "sha384sum"
	help
	  support sha384sum cmdline util

config LIBKCAPI_SHA512SUM
	bool
	depends on !COREUTILS_SHA256SUM && !BUSYBOX_SHA256SUM || ALLYES
	prompt "sha512sum"
	help
	  support sha512sum cmdline util

config LIBKCAPI_TEST
	bool
	depends on OPENSSL_BIN
	prompt "test"
	help
	  support kcapi tests

endif