aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/arch/arm64/crypto/Kconfig
blob: e7d9bd8e4709b6c4562fb07d0f4352a029b6ad06 (plain) (blame)
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
# SPDX-License-Identifier: GPL-2.0

menu "Accelerated Cryptographic Algorithms for CPU (arm64)"

config CRYPTO_GHASH_ARM64_CE
	tristate "Hash functions: GHASH (ARMv8 Crypto Extensions)"
	depends on KERNEL_MODE_NEON
	select CRYPTO_HASH
	select CRYPTO_LIB_AES
	select CRYPTO_LIB_GF128MUL
	select CRYPTO_AEAD
	help
	  GCM GHASH function (NIST SP800-38D)

	  Architecture: arm64 using:
	  - ARMv8 Crypto Extensions

config CRYPTO_NHPOLY1305_NEON
	tristate "Hash functions: NHPoly1305 (NEON)"
	depends on KERNEL_MODE_NEON
	select CRYPTO_NHPOLY1305
	help
	  NHPoly1305 hash function (Adiantum)

	  Architecture: arm64 using:
	  - NEON (Advanced SIMD) extensions

config CRYPTO_POLY1305_NEON
	tristate "Hash functions: Poly1305 (NEON)"
	depends on KERNEL_MODE_NEON
	select CRYPTO_HASH
	select CRYPTO_ARCH_HAVE_LIB_POLY1305
	help
	  Poly1305 authenticator algorithm (RFC7539)

	  Architecture: arm64 using:
	  - NEON (Advanced SIMD) extensions

config CRYPTO_SHA1_ARM64_CE
	tristate "Hash functions: SHA-1 (ARMv8 Crypto Extensions)"
	depends on KERNEL_MODE_NEON
	select CRYPTO_HASH
	select CRYPTO_SHA1
	help
	  SHA-1 secure hash algorithm (FIPS 180)

	  Architecture: arm64 using:
	  - ARMv8 Crypto Extensions

config CRYPTO_SHA256_ARM64
	tristate "Hash functions: SHA-224 and SHA-256"
	select CRYPTO_HASH
	help
	  SHA-224 and SHA-256 secure hash algorithms (FIPS 180)

	  Architecture: arm64

config CRYPTO_SHA2_ARM64_CE
	tristate "Hash functions: SHA-224 and SHA-256 (ARMv8 Crypto Extensions)"
	depends on KERNEL_MODE_NEON
	select CRYPTO_HASH
	select CRYPTO_SHA256_ARM64
	help
	  SHA-224 and SHA-256 secure hash algorithms (FIPS 180)

	  Architecture: arm64 using:
	  - ARMv8 Crypto Extensions

config CRYPTO_SHA512_ARM64
	tristate "Hash functions: SHA-384 and SHA-512"
	select CRYPTO_HASH
	help
	  SHA-384 and SHA-512 secure hash algorithms (FIPS 180)

	  Architecture: arm64

config CRYPTO_SHA512_ARM64_CE
	tristate "Hash functions: SHA-384 and SHA-512 (ARMv8 Crypto Extensions)"
	depends on KERNEL_MODE_NEON
	select CRYPTO_HASH
	select CRYPTO_SHA512_ARM64
	help
	  SHA-384 and SHA-512 secure hash algorithms (FIPS 180)

	  Architecture: arm64 using:
	  - ARMv8 Crypto Extensions

config CRYPTO_SHA3_ARM64
	tristate "Hash functions: SHA-3 (ARMv8.2 Crypto Extensions)"
	depends on KERNEL_MODE_NEON
	select CRYPTO_HASH
	select CRYPTO_SHA3
	help
	  SHA-3 secure hash algorithms (FIPS 202)

	  Architecture: arm64 using:
	  - ARMv8.2 Crypto Extensions

config CRYPTO_SM3_NEON
	tristate "Hash functions: SM3 (NEON)"
	depends on KERNEL_MODE_NEON
	select CRYPTO_HASH
	select CRYPTO_SM3
	help
	  SM3 (ShangMi 3) secure hash function (OSCCA GM/T 0004-2012)

	  Architecture: arm64 using:
	  - NEON (Advanced SIMD) extensions

config CRYPTO_SM3_ARM64_CE
	tristate "Hash functions: SM3 (ARMv8.2 Crypto Extensions)"
	depends on KERNEL_MODE_NEON
	select CRYPTO_HASH
	select CRYPTO_SM3
	help
	  SM3 (ShangMi 3) secure hash function (OSCCA GM/T 0004-2012)

	  Architecture: arm64 using:
	  - ARMv8.2 Crypto Extensions

config CRYPTO_POLYVAL_ARM64_CE
	tristate "Hash functions: POLYVAL (ARMv8 Crypto Extensions)"
	depends on KERNEL_MODE_NEON
	select CRYPTO_POLYVAL
	help
	  POLYVAL hash function for HCTR2

	  Architecture: arm64 using:
	  - ARMv8 Crypto Extensions

config CRYPTO_AES_ARM64
	tristate "Ciphers: AES, modes: ECB, CBC, CTR, CTS, XCTR, XTS"
	select CRYPTO_AES
	help
	  Block ciphers: AES cipher algorithms (FIPS-197)
	  Length-preserving ciphers: AES with ECB, CBC, CTR, CTS,
	    XCTR, and XTS modes
	  AEAD cipher: AES with CBC, ESSIV, and SHA-256
	    for fscrypt and dm-crypt

	  Architecture: arm64

config CRYPTO_AES_ARM64_CE
	tristate "Ciphers: AES (ARMv8 Crypto Extensions)"
	depends on ARM64 && KERNEL_MODE_NEON
	select CRYPTO_ALGAPI
	select CRYPTO_LIB_AES
	help
	  Block ciphers: AES cipher algorithms (FIPS-197)

	  Architecture: arm64 using:
	  - ARMv8 Crypto Extensions

config CRYPTO_AES_ARM64_CE_BLK
	tristate "Ciphers: AES, modes: ECB/CBC/CTR/XTS (ARMv8 Crypto Extensions)"
	depends on KERNEL_MODE_NEON
	select CRYPTO_SKCIPHER
	select CRYPTO_AES_ARM64_CE
	help
	  Length-preserving ciphers: AES cipher algorithms (FIPS-197)
	  with block cipher modes:
	  - ECB (Electronic Codebook) mode (NIST SP800-38A)
	  - CBC (Cipher Block Chaining) mode (NIST SP800-38A)
	  - CTR (Counter) mode (NIST SP800-38A)
	  - XTS (XOR Encrypt XOR with ciphertext stealing) mode (NIST SP800-38E
	    and IEEE 1619)

	  Architecture: arm64 using:
	  - ARMv8 Crypto Extensions

config CRYPTO_AES_ARM64_NEON_BLK
	tristate "Ciphers: AES, modes: ECB/CBC/CTR/XTS (NEON)"
	depends on KERNEL_MODE_NEON
	select CRYPTO_SKCIPHER
	select CRYPTO_LIB_AES
	help
	  Length-preserving ciphers: AES cipher algorithms (FIPS-197)
	  with block cipher modes:
	  - ECB (Electronic Codebook) mode (NIST SP800-38A)
	  - CBC (Cipher Block Chaining) mode (NIST SP800-38A)
	  - CTR (Counter) mode (NIST SP800-38A)
	  - XTS (XOR Encrypt XOR with ciphertext stealing) mode (NIST SP800-38E
	    and IEEE 1619)

	  Architecture: arm64 using:
	  - NEON (Advanced SIMD) extensions

config CRYPTO_CHACHA20_NEON
	tristate "Ciphers: ChaCha (NEON)"
	depends on KERNEL_MODE_NEON
	select CRYPTO_SKCIPHER
	select CRYPTO_LIB_CHACHA_GENERIC
	select CRYPTO_ARCH_HAVE_LIB_CHACHA
	help
	  Length-preserving ciphers: ChaCha20, XChaCha20, and XChaCha12
	  stream cipher algorithms

	  Architecture: arm64 using:
	  - NEON (Advanced SIMD) extensions

config CRYPTO_AES_ARM64_BS
	tristate "Ciphers: AES, modes: ECB/CBC/CTR/XCTR/XTS modes (bit-sliced NEON)"
	depends on KERNEL_MODE_NEON
	select CRYPTO_SKCIPHER
	select CRYPTO_AES_ARM64_NEON_BLK
	select CRYPTO_LIB_AES
	help
	  Length-preserving ciphers: AES cipher algorithms (FIPS-197)
	  with block cipher modes:
	  - ECB (Electronic Codebook) mode (NIST SP800-38A)
	  - CBC (Cipher Block Chaining) mode (NIST SP800-38A)
	  - CTR (Counter) mode (NIST SP800-38A)
	  - XCTR mode for HCTR2
	  - XTS (XOR Encrypt XOR with ciphertext stealing) mode (NIST SP800-38E
	    and IEEE 1619)

	  Architecture: arm64 using:
	  - bit-sliced algorithm
	  - NEON (Advanced SIMD) extensions

config CRYPTO_SM4_ARM64_CE
	tristate "Ciphers: SM4 (ARMv8.2 Crypto Extensions)"
	depends on KERNEL_MODE_NEON
	select CRYPTO_ALGAPI
	select CRYPTO_SM4
	help
	  Block ciphers: SM4 cipher algorithms (OSCCA GB/T 32907-2016)

	  Architecture: arm64 using:
	  - ARMv8.2 Crypto Extensions
	  - NEON (Advanced SIMD) extensions

config CRYPTO_SM4_ARM64_CE_BLK
	tristate "Ciphers: SM4, modes: ECB/CBC/CTR/XTS (ARMv8 Crypto Extensions)"
	depends on KERNEL_MODE_NEON
	select CRYPTO_SKCIPHER
	select CRYPTO_SM4
	help
	  Length-preserving ciphers: SM4 cipher algorithms (OSCCA GB/T 32907-2016)
	  with block cipher modes:
	  - ECB (Electronic Codebook) mode (NIST SP800-38A)
	  - CBC (Cipher Block Chaining) mode (NIST SP800-38A)
	  - CTR (Counter) mode (NIST SP800-38A)
	  - XTS (XOR Encrypt XOR with ciphertext stealing) mode (NIST SP800-38E
	    and IEEE 1619)

	  Architecture: arm64 using:
	  - ARMv8 Crypto Extensions
	  - NEON (Advanced SIMD) extensions

config CRYPTO_SM4_ARM64_NEON_BLK
	tristate "Ciphers: SM4, modes: ECB/CBC/CTR (NEON)"
	depends on KERNEL_MODE_NEON
	select CRYPTO_SKCIPHER
	select CRYPTO_SM4
	help
	  Length-preserving ciphers: SM4 cipher algorithms (OSCCA GB/T 32907-2016)
	  with block cipher modes:
	  - ECB (Electronic Codebook) mode (NIST SP800-38A)
	  - CBC (Cipher Block Chaining) mode (NIST SP800-38A)
	  - CTR (Counter) mode (NIST SP800-38A)

	  Architecture: arm64 using:
	  - NEON (Advanced SIMD) extensions

config CRYPTO_AES_ARM64_CE_CCM
	tristate "AEAD cipher: AES in CCM mode (ARMv8 Crypto Extensions)"
	depends on ARM64 && KERNEL_MODE_NEON
	select CRYPTO_ALGAPI
	select CRYPTO_AES_ARM64_CE
	select CRYPTO_AES_ARM64_CE_BLK
	select CRYPTO_AEAD
	select CRYPTO_LIB_AES
	help
	  AEAD cipher: AES cipher algorithms (FIPS-197) with
	  CCM (Counter with Cipher Block Chaining-Message Authentication Code)
	  authenticated encryption mode (NIST SP800-38C)

	  Architecture: arm64 using:
	  - ARMv8 Crypto Extensions
	  - NEON (Advanced SIMD) extensions

config CRYPTO_SM4_ARM64_CE_CCM
	tristate "AEAD cipher: SM4 in CCM mode (ARMv8 Crypto Extensions)"
	depends on KERNEL_MODE_NEON
	select CRYPTO_ALGAPI
	select CRYPTO_AEAD
	select CRYPTO_SM4
	select CRYPTO_SM4_ARM64_CE_BLK
	help
	  AEAD cipher: SM4 cipher algorithms (OSCCA GB/T 32907-2016) with
	  CCM (Counter with Cipher Block Chaining-Message Authentication Code)
	  authenticated encryption mode (NIST SP800-38C)

	  Architecture: arm64 using:
	  - ARMv8 Crypto Extensions
	  - NEON (Advanced SIMD) extensions

config CRYPTO_SM4_ARM64_CE_GCM
	tristate "AEAD cipher: SM4 in GCM mode (ARMv8 Crypto Extensions)"
	depends on KERNEL_MODE_NEON
	select CRYPTO_ALGAPI
	select CRYPTO_AEAD
	select CRYPTO_SM4
	select CRYPTO_SM4_ARM64_CE_BLK
	help
	  AEAD cipher: SM4 cipher algorithms (OSCCA GB/T 32907-2016) with
	  GCM (Galois/Counter Mode) authenticated encryption mode (NIST SP800-38D)

	  Architecture: arm64 using:
	  - ARMv8 Crypto Extensions
	  - PMULL (Polynomial Multiply Long) instructions
	  - NEON (Advanced SIMD) extensions

config CRYPTO_CRCT10DIF_ARM64_CE
	tristate "CRCT10DIF (PMULL)"
	depends on KERNEL_MODE_NEON && CRC_T10DIF
	select CRYPTO_HASH
	help
	  CRC16 CRC algorithm used for the T10 (SCSI) Data Integrity Field (DIF)

	  Architecture: arm64 using
	  - PMULL (Polynomial Multiply Long) instructions

endmenu