Ard Biesheuvel | 746b2e0 | 2019-11-08 13:22:07 +0100 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0 |
| 2 | |
Justin M. Forbes | e56e189 | 2022-01-12 08:01:38 -0600 | [diff] [blame] | 3 | menu "Crypto library routines" |
| 4 | |
Eric Biggers | 7033b93 | 2022-07-25 11:36:34 -0700 | [diff] [blame] | 5 | config CRYPTO_LIB_UTILS |
| 6 | tristate |
| 7 | |
Ard Biesheuvel | 746b2e0 | 2019-11-08 13:22:07 +0100 | [diff] [blame] | 8 | config CRYPTO_LIB_AES |
| 9 | tristate |
| 10 | |
Ard Biesheuvel | f135440 | 2024-04-29 16:27:58 -0400 | [diff] [blame] | 11 | config CRYPTO_LIB_AESCFB |
| 12 | tristate |
| 13 | select CRYPTO_LIB_AES |
| 14 | select CRYPTO_LIB_UTILS |
| 15 | |
Ard Biesheuvel | 520af5d | 2022-11-03 20:22:59 +0100 | [diff] [blame] | 16 | config CRYPTO_LIB_AESGCM |
| 17 | tristate |
| 18 | select CRYPTO_LIB_AES |
| 19 | select CRYPTO_LIB_GF128MUL |
| 20 | select CRYPTO_LIB_UTILS |
| 21 | |
Ard Biesheuvel | 746b2e0 | 2019-11-08 13:22:07 +0100 | [diff] [blame] | 22 | config CRYPTO_LIB_ARC4 |
| 23 | tristate |
| 24 | |
Ard Biesheuvel | 61c581a | 2022-11-03 20:22:57 +0100 | [diff] [blame] | 25 | config CRYPTO_LIB_GF128MUL |
| 26 | tristate |
| 27 | |
Jason A. Donenfeld | 66d7fb9 | 2019-11-08 13:22:28 +0100 | [diff] [blame] | 28 | config CRYPTO_ARCH_HAVE_LIB_BLAKE2S |
Jason A. Donenfeld | 6048fdc | 2021-12-22 14:56:58 +0100 | [diff] [blame] | 29 | bool |
Jason A. Donenfeld | 66d7fb9 | 2019-11-08 13:22:28 +0100 | [diff] [blame] | 30 | help |
| 31 | Declares whether the architecture provides an arch-specific |
| 32 | accelerated implementation of the Blake2s library interface, |
| 33 | either builtin or as a module. |
| 34 | |
| 35 | config CRYPTO_LIB_BLAKE2S_GENERIC |
Jason A. Donenfeld | 6048fdc | 2021-12-22 14:56:58 +0100 | [diff] [blame] | 36 | def_bool !CRYPTO_ARCH_HAVE_LIB_BLAKE2S |
Jason A. Donenfeld | 66d7fb9 | 2019-11-08 13:22:28 +0100 | [diff] [blame] | 37 | help |
| 38 | This symbol can be depended upon by arch implementations of the |
| 39 | Blake2s library interface that require the generic code as a |
| 40 | fallback, e.g., for SIMD implementations. If no arch specific |
| 41 | implementation is enabled, this implementation serves the users |
| 42 | of CRYPTO_LIB_BLAKE2S. |
| 43 | |
Ard Biesheuvel | 5fb8ef2 | 2019-11-08 13:22:08 +0100 | [diff] [blame] | 44 | config CRYPTO_ARCH_HAVE_LIB_CHACHA |
| 45 | tristate |
| 46 | help |
| 47 | Declares whether the architecture provides an arch-specific |
| 48 | accelerated implementation of the ChaCha library interface, |
| 49 | either builtin or as a module. |
| 50 | |
| 51 | config CRYPTO_LIB_CHACHA_GENERIC |
| 52 | tristate |
Eric Biggers | 6e78ad0 | 2022-07-25 11:36:35 -0700 | [diff] [blame] | 53 | select CRYPTO_LIB_UTILS |
Ard Biesheuvel | 5fb8ef2 | 2019-11-08 13:22:08 +0100 | [diff] [blame] | 54 | help |
| 55 | This symbol can be depended upon by arch implementations of the |
| 56 | ChaCha library interface that require the generic code as a |
| 57 | fallback, e.g., for SIMD implementations. If no arch specific |
| 58 | implementation is enabled, this implementation serves the users |
| 59 | of CRYPTO_LIB_CHACHA. |
| 60 | |
| 61 | config CRYPTO_LIB_CHACHA |
Justin M. Forbes | e56e189 | 2022-01-12 08:01:38 -0600 | [diff] [blame] | 62 | tristate "ChaCha library interface" |
Ard Biesheuvel | 5fb8ef2 | 2019-11-08 13:22:08 +0100 | [diff] [blame] | 63 | depends on CRYPTO_ARCH_HAVE_LIB_CHACHA || !CRYPTO_ARCH_HAVE_LIB_CHACHA |
| 64 | select CRYPTO_LIB_CHACHA_GENERIC if CRYPTO_ARCH_HAVE_LIB_CHACHA=n |
| 65 | help |
| 66 | Enable the ChaCha library interface. This interface may be fulfilled |
| 67 | by either the generic implementation or an arch-specific one, if one |
| 68 | is available and enabled. |
| 69 | |
Jason A. Donenfeld | 0ed42a6f | 2019-11-08 13:22:32 +0100 | [diff] [blame] | 70 | config CRYPTO_ARCH_HAVE_LIB_CURVE25519 |
| 71 | tristate |
| 72 | help |
| 73 | Declares whether the architecture provides an arch-specific |
| 74 | accelerated implementation of the Curve25519 library interface, |
| 75 | either builtin or as a module. |
| 76 | |
| 77 | config CRYPTO_LIB_CURVE25519_GENERIC |
| 78 | tristate |
| 79 | help |
| 80 | This symbol can be depended upon by arch implementations of the |
| 81 | Curve25519 library interface that require the generic code as a |
| 82 | fallback, e.g., for SIMD implementations. If no arch specific |
| 83 | implementation is enabled, this implementation serves the users |
| 84 | of CRYPTO_LIB_CURVE25519. |
| 85 | |
| 86 | config CRYPTO_LIB_CURVE25519 |
Justin M. Forbes | e56e189 | 2022-01-12 08:01:38 -0600 | [diff] [blame] | 87 | tristate "Curve25519 scalar multiplication library" |
Jason A. Donenfeld | 0ed42a6f | 2019-11-08 13:22:32 +0100 | [diff] [blame] | 88 | depends on CRYPTO_ARCH_HAVE_LIB_CURVE25519 || !CRYPTO_ARCH_HAVE_LIB_CURVE25519 |
| 89 | select CRYPTO_LIB_CURVE25519_GENERIC if CRYPTO_ARCH_HAVE_LIB_CURVE25519=n |
Eric Biggers | 7033b93 | 2022-07-25 11:36:34 -0700 | [diff] [blame] | 90 | select CRYPTO_LIB_UTILS |
Jason A. Donenfeld | 0ed42a6f | 2019-11-08 13:22:32 +0100 | [diff] [blame] | 91 | help |
| 92 | Enable the Curve25519 library interface. This interface may be |
| 93 | fulfilled by either the generic implementation or an arch-specific |
| 94 | one, if one is available and enabled. |
| 95 | |
Ard Biesheuvel | 746b2e0 | 2019-11-08 13:22:07 +0100 | [diff] [blame] | 96 | config CRYPTO_LIB_DES |
| 97 | tristate |
| 98 | |
Ard Biesheuvel | a1d9306 | 2019-11-08 13:22:21 +0100 | [diff] [blame] | 99 | config CRYPTO_LIB_POLY1305_RSIZE |
| 100 | int |
Ard Biesheuvel | a11d055 | 2019-11-08 13:22:26 +0100 | [diff] [blame] | 101 | default 2 if MIPS |
Jason A. Donenfeld | d7d7b85 | 2020-01-05 22:40:48 -0500 | [diff] [blame] | 102 | default 11 if X86_64 |
Ard Biesheuvel | a6b803b | 2019-11-08 13:22:25 +0100 | [diff] [blame] | 103 | default 9 if ARM || ARM64 |
Ard Biesheuvel | a1d9306 | 2019-11-08 13:22:21 +0100 | [diff] [blame] | 104 | default 1 |
| 105 | |
| 106 | config CRYPTO_ARCH_HAVE_LIB_POLY1305 |
| 107 | tristate |
| 108 | help |
| 109 | Declares whether the architecture provides an arch-specific |
| 110 | accelerated implementation of the Poly1305 library interface, |
| 111 | either builtin or as a module. |
| 112 | |
Ard Biesheuvel | 48ea8c6 | 2019-11-08 13:22:19 +0100 | [diff] [blame] | 113 | config CRYPTO_LIB_POLY1305_GENERIC |
| 114 | tristate |
Ard Biesheuvel | a1d9306 | 2019-11-08 13:22:21 +0100 | [diff] [blame] | 115 | help |
| 116 | This symbol can be depended upon by arch implementations of the |
| 117 | Poly1305 library interface that require the generic code as a |
| 118 | fallback, e.g., for SIMD implementations. If no arch specific |
| 119 | implementation is enabled, this implementation serves the users |
| 120 | of CRYPTO_LIB_POLY1305. |
| 121 | |
| 122 | config CRYPTO_LIB_POLY1305 |
Justin M. Forbes | e56e189 | 2022-01-12 08:01:38 -0600 | [diff] [blame] | 123 | tristate "Poly1305 library interface" |
Ard Biesheuvel | a1d9306 | 2019-11-08 13:22:21 +0100 | [diff] [blame] | 124 | depends on CRYPTO_ARCH_HAVE_LIB_POLY1305 || !CRYPTO_ARCH_HAVE_LIB_POLY1305 |
| 125 | select CRYPTO_LIB_POLY1305_GENERIC if CRYPTO_ARCH_HAVE_LIB_POLY1305=n |
| 126 | help |
| 127 | Enable the Poly1305 library interface. This interface may be fulfilled |
| 128 | by either the generic implementation or an arch-specific one, if one |
| 129 | is available and enabled. |
Ard Biesheuvel | 48ea8c6 | 2019-11-08 13:22:19 +0100 | [diff] [blame] | 130 | |
Ard Biesheuvel | ed20078 | 2019-11-08 13:22:39 +0100 | [diff] [blame] | 131 | config CRYPTO_LIB_CHACHA20POLY1305 |
Justin M. Forbes | e56e189 | 2022-01-12 08:01:38 -0600 | [diff] [blame] | 132 | tristate "ChaCha20-Poly1305 AEAD support (8-byte nonce library version)" |
Ard Biesheuvel | ed20078 | 2019-11-08 13:22:39 +0100 | [diff] [blame] | 133 | depends on CRYPTO_ARCH_HAVE_LIB_CHACHA || !CRYPTO_ARCH_HAVE_LIB_CHACHA |
| 134 | depends on CRYPTO_ARCH_HAVE_LIB_POLY1305 || !CRYPTO_ARCH_HAVE_LIB_POLY1305 |
Justin M. Forbes | e56e189 | 2022-01-12 08:01:38 -0600 | [diff] [blame] | 135 | depends on CRYPTO |
Ard Biesheuvel | ed20078 | 2019-11-08 13:22:39 +0100 | [diff] [blame] | 136 | select CRYPTO_LIB_CHACHA |
| 137 | select CRYPTO_LIB_POLY1305 |
Justin M. Forbes | e56e189 | 2022-01-12 08:01:38 -0600 | [diff] [blame] | 138 | select CRYPTO_ALGAPI |
Ard Biesheuvel | ed20078 | 2019-11-08 13:22:39 +0100 | [diff] [blame] | 139 | |
Eric Biggers | ec8f7f4 | 2022-07-09 14:18:49 -0700 | [diff] [blame] | 140 | config CRYPTO_LIB_SHA1 |
| 141 | tristate |
| 142 | |
Ard Biesheuvel | 746b2e0 | 2019-11-08 13:22:07 +0100 | [diff] [blame] | 143 | config CRYPTO_LIB_SHA256 |
| 144 | tristate |
Tianjia Zhang | 2b31277 | 2021-07-20 11:46:39 +0800 | [diff] [blame] | 145 | |
Justin M. Forbes | e56e189 | 2022-01-12 08:01:38 -0600 | [diff] [blame] | 146 | endmenu |