Lines Matching +full:aes +full:- +full:gcm
1 # SPDX-License-Identifier: GPL-2.0
16 - NEON (Advanced SIMD) extensions
27 GCM GHASH function (NIST SP800-38D)
30 - PMULL (Polynomial Multiply Long) instructions
31 - NEON (Advanced SIMD) extensions
32 - ARMv8 Crypto Extensions
34 Use an implementation of GHASH (used by the GCM AEAD chaining mode)
47 - NEON (Advanced SIMD) extensions
57 - NEON (Advanced SIMD) extensions
62 much faster than the SHA-2 family and slightly faster than
63 SHA-1.
66 tristate "Ciphers: AES"
70 Block ciphers: AES cipher algorithms (FIPS-197)
75 fastest AES implementation for single blocks. For multiple
76 blocks, the NEON bit-sliced implementation is usually faster.
84 tristate "Ciphers: AES, modes: ECB/CBC/CTR/XTS (bit-sliced NEON)"
90 Length-preserving ciphers: AES cipher algorithms (FIPS-197)
92 - ECB (Electronic Codebook) mode (NIST SP800-38A)
93 - CBC (Cipher Block Chaining) mode (NIST SP800-38A)
94 - CTR (Counter) mode (NIST SP800-38A)
95 - XTS (XOR Encrypt XOR with ciphertext stealing) mode (NIST SP800-38E
98 Bit sliced AES gives around 45% speedup on Cortex-A15 for CTR mode
102 The bit sliced AES code does not use lookup tables, so it is believed
104 sliced AES code cannot process single blocks efficiently, in certain
105 cases table-based code with some countermeasures against cache timing
112 tristate "Ciphers: AES, modes: ECB/CBC/CTS/CTR/XTS (ARMv8 Crypto Extensions)"
117 Length-preserving ciphers: AES cipher algorithms (FIPS-197)
119 - ECB (Electronic Codebook) mode (NIST SP800-38A)
120 - CBC (Cipher Block Chaining) mode (NIST SP800-38A)
121 - CTR (Counter) mode (NIST SP800-38A)
122 - CTS (Cipher Text Stealing) mode (NIST SP800-38A)
123 - XTS (XOR Encrypt XOR with ciphertext stealing) mode (NIST SP800-38E
127 - ARMv8 Crypto Extensions