• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# SPDX-License-Identifier: GPL-2.0
2
3menu "Crypto library routines"
4
5config CRYPTO_LIB_AES
6	tristate
7
8config CRYPTO_LIB_ARC4
9	tristate
10
11config CRYPTO_ARCH_HAVE_LIB_BLAKE2S
12	bool
13	help
14	  Declares whether the architecture provides an arch-specific
15	  accelerated implementation of the Blake2s library interface,
16	  either builtin or as a module.
17
18config CRYPTO_LIB_BLAKE2S_GENERIC
19	def_bool !CRYPTO_ARCH_HAVE_LIB_BLAKE2S
20	help
21	  This symbol can be depended upon by arch implementations of the
22	  Blake2s library interface that require the generic code as a
23	  fallback, e.g., for SIMD implementations. If no arch specific
24	  implementation is enabled, this implementation serves the users
25	  of CRYPTO_LIB_BLAKE2S.
26
27config CRYPTO_LIB_DES
28	tristate
29
30config CRYPTO_LIB_SHA256
31	tristate
32
33endmenu
34