blob: 3f5aeb786192bf30b330ffa387b82f9599993369 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001# SPDX-License-Identifier: GPL-2.0
Ard Biesheuvel2c988332014-03-06 16:23:33 +08002
3menuconfig ARM64_CRYPTO
4 bool "ARM64 Accelerated Cryptographic Algorithms"
5 depends on ARM64
6 help
7 Say Y here to choose from a selection of cryptographic algorithms
8 implemented using ARM64 specific CPU features or instructions.
9
10if ARM64_CRYPTO
11
Ard Biesheuvel7918ece2016-11-20 11:42:01 +000012config CRYPTO_SHA256_ARM64
13 tristate "SHA-224/SHA-256 digest algorithm for arm64"
14 select CRYPTO_HASH
15
16config CRYPTO_SHA512_ARM64
17 tristate "SHA-384/SHA-512 digest algorithm for arm64"
18 select CRYPTO_HASH
19
Ard Biesheuvel2c988332014-03-06 16:23:33 +080020config CRYPTO_SHA1_ARM64_CE
21 tristate "SHA-1 digest algorithm (ARMv8 Crypto Extensions)"
Ard Biesheuvel0771f322017-07-24 11:28:08 +010022 depends on KERNEL_MODE_NEON
Ard Biesheuvel2c988332014-03-06 16:23:33 +080023 select CRYPTO_HASH
Ard Biesheuvel0771f322017-07-24 11:28:08 +010024 select CRYPTO_SHA1
Ard Biesheuvel2c988332014-03-06 16:23:33 +080025
Ard Biesheuvel6ba6c742014-03-20 15:35:40 +010026config CRYPTO_SHA2_ARM64_CE
27 tristate "SHA-224/SHA-256 digest algorithm (ARMv8 Crypto Extensions)"
Ard Biesheuvelda179332017-07-24 11:28:09 +010028 depends on KERNEL_MODE_NEON
Ard Biesheuvel6ba6c742014-03-20 15:35:40 +010029 select CRYPTO_HASH
Ard Biesheuvelda179332017-07-24 11:28:09 +010030 select CRYPTO_SHA256_ARM64
Ard Biesheuvel6ba6c742014-03-20 15:35:40 +010031
Ard Biesheuvelbb6c8c42018-01-09 18:23:02 +000032config CRYPTO_SHA512_ARM64_CE
33 tristate "SHA-384/SHA-512 digest algorithm (ARMv8 Crypto Extensions)"
34 depends on KERNEL_MODE_NEON
35 select CRYPTO_HASH
36 select CRYPTO_SHA512_ARM64
37
Ard Biesheuvel15d59102018-01-19 12:04:38 +000038config CRYPTO_SHA3_ARM64
39 tristate "SHA3 digest algorithm (ARMv8.2 Crypto Extensions)"
40 depends on KERNEL_MODE_NEON
41 select CRYPTO_HASH
42 select CRYPTO_SHA3
43
Ard Biesheuvel140aa502018-01-19 12:04:39 +000044config CRYPTO_SM3_ARM64_CE
45 tristate "SM3 digest algorithm (ARMv8.2 Crypto Extensions)"
46 depends on KERNEL_MODE_NEON
47 select CRYPTO_HASH
48 select CRYPTO_SM3
49
Ard Biesheuvele99ce922018-04-25 14:20:46 +020050config CRYPTO_SM4_ARM64_CE
51 tristate "SM4 symmetric cipher (ARMv8.2 Crypto Extensions)"
52 depends on KERNEL_MODE_NEON
53 select CRYPTO_ALGAPI
54 select CRYPTO_SM4
55
Ard Biesheuvelfdd23892014-03-26 20:53:05 +010056config CRYPTO_GHASH_ARM64_CE
Ard Biesheuvel537c1442017-07-24 11:28:16 +010057 tristate "GHASH/AES-GCM using ARMv8 Crypto Extensions"
Ard Biesheuvel6d6254d2017-07-24 11:28:05 +010058 depends on KERNEL_MODE_NEON
Ard Biesheuvelfdd23892014-03-26 20:53:05 +010059 select CRYPTO_HASH
Ard Biesheuvel6d6254d2017-07-24 11:28:05 +010060 select CRYPTO_GF128MUL
Ard Biesheuvel537c1442017-07-24 11:28:16 +010061 select CRYPTO_AES
62 select CRYPTO_AES_ARM64
Ard Biesheuvelfdd23892014-03-26 20:53:05 +010063
Ard Biesheuvel6ef57372016-12-05 18:42:25 +000064config CRYPTO_CRCT10DIF_ARM64_CE
65 tristate "CRCT10DIF digest algorithm using PMULL instructions"
66 depends on KERNEL_MODE_NEON && CRC_T10DIF
67 select CRYPTO_HASH
68
Ard Biesheuvelbed593c2017-01-11 16:41:52 +000069config CRYPTO_AES_ARM64
70 tristate "AES core cipher using scalar instructions"
71 select CRYPTO_AES
72
Ard Biesheuvel317f2f72014-02-05 18:13:38 +010073config CRYPTO_AES_ARM64_CE
74 tristate "AES core cipher using ARMv8 Crypto Extensions"
75 depends on ARM64 && KERNEL_MODE_NEON
76 select CRYPTO_ALGAPI
Ard Biesheuvelb8fb9932017-07-24 11:28:11 +010077 select CRYPTO_AES_ARM64
Ard Biesheuvel317f2f72014-02-05 18:13:38 +010078
Ard Biesheuvela3fd8212014-02-10 11:26:29 +010079config CRYPTO_AES_ARM64_CE_CCM
80 tristate "AES in CCM mode using ARMv8 Crypto Extensions"
81 depends on ARM64 && KERNEL_MODE_NEON
82 select CRYPTO_ALGAPI
Ard Biesheuvel12ac3ef2014-11-03 16:50:01 +000083 select CRYPTO_AES_ARM64_CE
Ard Biesheuvel5092fcf2017-07-24 11:28:12 +010084 select CRYPTO_AES_ARM64
Ard Biesheuvela3fd8212014-02-10 11:26:29 +010085 select CRYPTO_AEAD
86
Ard Biesheuvel49788fe2014-03-21 10:19:17 +010087config CRYPTO_AES_ARM64_CE_BLK
88 tristate "AES in ECB/CBC/CTR/XTS modes using ARMv8 Crypto Extensions"
Ard Biesheuvele2115062017-07-24 11:28:13 +010089 depends on KERNEL_MODE_NEON
Ard Biesheuvel49788fe2014-03-21 10:19:17 +010090 select CRYPTO_BLKCIPHER
Ard Biesheuvel12ac3ef2014-11-03 16:50:01 +000091 select CRYPTO_AES_ARM64_CE
Ard Biesheuvele2115062017-07-24 11:28:13 +010092 select CRYPTO_AES_ARM64
Herbert Xu585b5fa2016-11-29 15:08:40 +080093 select CRYPTO_SIMD
Ard Biesheuvel49788fe2014-03-21 10:19:17 +010094
95config CRYPTO_AES_ARM64_NEON_BLK
96 tristate "AES in ECB/CBC/CTR/XTS modes using NEON instructions"
Ard Biesheuvele2115062017-07-24 11:28:13 +010097 depends on KERNEL_MODE_NEON
Ard Biesheuvel49788fe2014-03-21 10:19:17 +010098 select CRYPTO_BLKCIPHER
Ard Biesheuvele2115062017-07-24 11:28:13 +010099 select CRYPTO_AES_ARM64
Ard Biesheuvel49788fe2014-03-21 10:19:17 +0100100 select CRYPTO_AES
Herbert Xu585b5fa2016-11-29 15:08:40 +0800101 select CRYPTO_SIMD
Ard Biesheuvel49788fe2014-03-21 10:19:17 +0100102
Ard Biesheuvelb7171ce2017-01-11 16:41:49 +0000103config CRYPTO_CHACHA20_NEON
104 tristate "NEON accelerated ChaCha20 symmetric cipher"
105 depends on KERNEL_MODE_NEON
106 select CRYPTO_BLKCIPHER
107 select CRYPTO_CHACHA20
108
Eric Biggersa00fa0c2018-12-03 19:52:49 -0800109config CRYPTO_NHPOLY1305_NEON
110 tristate "NHPoly1305 hash function using NEON instructions (for Adiantum)"
111 depends on KERNEL_MODE_NEON
112 select CRYPTO_NHPOLY1305
113
Ard Biesheuvel1abee992017-01-11 16:41:55 +0000114config CRYPTO_AES_ARM64_BS
115 tristate "AES in ECB/CBC/CTR/XTS modes using bit-sliced NEON algorithm"
116 depends on KERNEL_MODE_NEON
117 select CRYPTO_BLKCIPHER
Ard Biesheuvel12fcd922017-01-28 23:25:39 +0000118 select CRYPTO_AES_ARM64_NEON_BLK
Ard Biesheuvelec808bb2017-07-24 11:28:15 +0100119 select CRYPTO_AES_ARM64
Ard Biesheuvel1abee992017-01-11 16:41:55 +0000120 select CRYPTO_SIMD
121
Ard Biesheuvel2c988332014-03-06 16:23:33 +0800122endif