| /linux/arch/arm64/crypto/ |
| H A D | Makefile | 14 obj-$(CONFIG_CRYPTO_SM4_ARM64_CE) += sm4-ce-cipher.o 15 sm4-ce-cipher-y := sm4-ce-cipher-glue.o sm4-ce-cipher-core.o 17 obj-$(CONFIG_CRYPTO_SM4_ARM64_CE_BLK) += sm4-ce.o 18 sm4-ce-y := sm4-ce-glue.o sm4-ce-core.o 20 obj-$(CONFIG_CRYPTO_SM4_ARM64_CE_CCM) += sm4-ce-ccm.o 21 sm4-ce-ccm-y := sm4-ce-ccm-glue.o sm4-ce-ccm-core.o 23 obj-$(CONFIG_CRYPTO_SM4_ARM64_CE_GCM) += sm4-ce-gcm.o 24 sm4-ce-gcm-y := sm4-ce-gcm-glue.o sm4-ce-gcm-core.o 26 obj-$(CONFIG_CRYPTO_SM4_ARM64_NEON_BLK) += sm4-neon.o 27 sm4-neon-y := sm4-neon-glue.o sm4-neon-core.o
|
| H A D | sm4-neon-glue.c | 3 * SM4 Cipher Algorithm, using ARMv8 NEON 5 * https://tools.ietf.org/id/draft-ribose-cfrg-sm4-10.html 19 #include <crypto/sm4.h> 182 .cra_name = "ecb(sm4)", 183 .cra_driver_name = "ecb-sm4-neon", 196 .cra_name = "cbc(sm4)", 197 .cra_driver_name = "cbc-sm4-neon", 211 .cra_name = "ctr(sm4)", 212 .cra_driver_name = "ctr-sm4-neon", 241 MODULE_DESCRIPTION("SM4 ECB/CBC/CTR using ARMv8 NEON"); [all …]
|
| H A D | sm4-ce-glue.c | 3 * SM4 Cipher Algorithm, using ARMv8 Crypto Extensions 5 * https://tools.ietf.org/id/draft-ribose-cfrg-sm4-10.html 16 #include <crypto/sm4.h> 414 .cra_name = "ecb(sm4)", 415 .cra_driver_name = "ecb-sm4-ce", 428 .cra_name = "cbc(sm4)", 429 .cra_driver_name = "cbc-sm4-ce", 443 .cra_name = "ctr(sm4)", 444 .cra_driver_name = "ctr-sm4-ce", 459 .cra_name = "cts(cbc(sm4))", [all …]
|
| H A D | sm4-ce-cipher-glue.c | 6 #include <crypto/sm4.h> 12 MODULE_ALIAS_CRYPTO("sm4"); 13 MODULE_ALIAS_CRYPTO("sm4-ce"); 14 MODULE_DESCRIPTION("SM4 symmetric cipher using ARMv8 Crypto Extensions"); 53 .cra_name = "sm4", 54 .cra_driver_name = "sm4-ce", 79 module_cpu_feature_match(SM4, sm4_ce_mod_init);
|
| H A D | Kconfig | 129 tristate "Ciphers: SM4 (ARMv8.2 Crypto Extensions)" 134 Block ciphers: SM4 cipher algorithms (OSCCA GB/T 32907-2016) 141 tristate "Ciphers: SM4, modes: ECB/CBC/CTR/XTS (ARMv8 Crypto Extensions)" 146 Length-preserving ciphers: SM4 cipher algorithms (OSCCA GB/T 32907-2016) 159 tristate "Ciphers: SM4, modes: ECB/CBC/CTR (NEON)" 164 Length-preserving ciphers: SM4 cipher algorithms (OSCCA GB/T 32907-2016) 191 tristate "AEAD cipher: SM4 in CCM mode (ARMv8 Crypto Extensions)" 198 AEAD cipher: SM4 cipher algorithms (OSCCA GB/T 32907-2016) with 207 tristate "AEAD cipher: SM4 in GCM mode (ARMv8 Crypto Extensions)" 214 AEAD cipher: SM4 cipher algorithms (OSCCA GB/T 32907-2016) with
|
| H A D | sm4-ce-gcm-glue.c | 3 * SM4-GCM AEAD Algorithm using ARMv8 Crypto Extensions 19 #include <crypto/sm4.h> 20 #include "sm4-ce.h" 221 .cra_name = "gcm(sm4)", 222 .cra_driver_name = "gcm-sm4-ce", 256 module_cpu_feature_match(SM4, sm4_ce_gcm_init); 259 MODULE_DESCRIPTION("Synchronous SM4 in GCM mode using ARMv8 Crypto Extensions"); 260 MODULE_ALIAS_CRYPTO("gcm(sm4)");
|
| H A D | sm4-ce-ccm-glue.c | 3 * SM4-CCM AEAD Algorithm using ARMv8 Crypto Extensions 18 #include <crypto/sm4.h> 19 #include "sm4-ce.h" 253 .cra_name = "ccm(sm4)", 254 .cra_driver_name = "ccm-sm4-ce", 279 module_cpu_feature_match(SM4, sm4_ce_ccm_init); 282 MODULE_DESCRIPTION("Synchronous SM4 in CCM mode using ARMv8 Crypto Extensions"); 283 MODULE_ALIAS_CRYPTO("ccm(sm4)");
|
| H A D | sm4-ce.h | 3 * SM4 common functions for Crypto Extensions
|
| /linux/drivers/crypto/intel/keembay/ |
| H A D | Kconfig | 2 tristate "Support for Intel Keem Bay OCS AES/SM4 HW acceleration" 10 SM4 cipher hardware acceleration for use with Crypto API. 13 cbc(aes), ctr(aes), ccm(aes), gcm(aes), cbc(sm4), ctr(sm4), ccm(sm4) 14 and gcm(sm4). 17 enabled: ecb(aes), cts(cbc(aes)), ecb(sm4) and cts(cbc(sm4)). 20 bool "Support for Intel Keem Bay OCS AES/SM4 ECB HW acceleration" 24 AES/SM4 ECB mode hardware acceleration for use with Crypto API. 26 Provides OCS version of ecb(aes) and ecb(sm4) 28 Intel does not recommend use of ECB mode with AES/SM4. 31 bool "Support for Intel Keem Bay OCS AES/SM4 CTS HW acceleration" [all …]
|
| /linux/arch/riscv/crypto/ |
| H A D | sm4-riscv64-glue.c | 3 * SM4 using the RISC-V vector crypto extensions 16 #include <crypto/sm4.h> 74 .cra_name = "sm4", 75 .cra_driver_name = "sm4-riscv64-zvksed-zvkb", 104 MODULE_DESCRIPTION("SM4 (RISC-V accelerated)"); 107 MODULE_ALIAS_CRYPTO("sm4");
|
| H A D | Makefile | 13 obj-$(CONFIG_CRYPTO_SM4_RISCV64) += sm4-riscv64.o 14 sm4-riscv64-y := sm4-riscv64-glue.o sm4-riscv64-zvksed-zvkb.o
|
| H A D | Kconfig | 44 tristate "Ciphers: SM4 (ShangMi 4)" 49 SM4 block cipher algorithm (OSCCA GB/T 32907-2016, 52 SM4 (GBT.32907-2016) is a cryptographic standard issued by the
|
| H A D | sm4-riscv64-zvksed-zvkb.S | 43 // - RISC-V Vector SM4 Block Cipher extension ('Zvksed') 92 // Do the 32 rounds of SM4, 4 at a time.
|
| /linux/arch/x86/crypto/ |
| H A D | Makefile | 64 obj-$(CONFIG_CRYPTO_SM4_AESNI_AVX_X86_64) += sm4-aesni-avx-x86_64.o 65 sm4-aesni-avx-x86_64-y := sm4-aesni-avx-asm_64.o sm4_aesni_avx_glue.o 67 obj-$(CONFIG_CRYPTO_SM4_AESNI_AVX2_X86_64) += sm4-aesni-avx2-x86_64.o 68 sm4-aesni-avx2-x86_64-y := sm4-aesni-avx2-asm_64.o sm4_aesni_avx2_glue.o
|
| H A D | Kconfig | 178 tristate "Ciphers: SM4 with modes: ECB, CBC, CTR (AES-NI/AVX)" 184 Length-preserving ciphers: SM4 cipher algorithms 192 we can use the AES S-Box to simulate the SM4 S-Box to achieve the 198 tristate "Ciphers: SM4 with modes: ECB, CBC, CTR (AES-NI/AVX2)" 205 Length-preserving ciphers: SM4 cipher algorithms 213 we can use the AES S-Box to simulate the SM4 S-Box to achieve the
|
| H A D | sm4-aesni-avx2-asm_64.S | 3 * SM4 Cipher Algorithm, AES-NI/AVX2 optimized. 5 * https://tools.ietf.org/id/draft-ribose-cfrg-sm4-10.html 12 /* Based on SM4 AES-NI work by libgcrypt and Markku-Juhani O. Saarinen at: 104 * These allow exposing SM4 S-Box from AES SubByte. 107 /* pre-SubByte affine transform, from SM4 field to AES field. */ 113 /* post-SubByte affine transform, from AES field to SM4 field. */
|
| H A D | sm4-aesni-avx-asm_64.S | 3 * SM4 Cipher Algorithm, AES-NI/AVX optimized. 5 * https://tools.ietf.org/id/draft-ribose-cfrg-sm4-10.html 12 /* Based on SM4 AES-NI work by libgcrypt and Markku-Juhani O. Saarinen at: 89 * These allow exposing SM4 S-Box from AES SubByte. 92 /* pre-SubByte affine transform, from SM4 field to AES field. */ 98 /* post-SubByte affine transform, from AES field to SM4 field. */
|
| H A D | sm4-avx.h | 6 #include <crypto/sm4.h>
|
| /linux/include/crypto/ |
| H A D | sm4.h | 4 * Common values for the SM4 algorithm 29 * sm4_expandkey - Expands the SM4 key as described in GB/T 32907-2016 41 * sm4_crypt_block - Encrypt or decrypt a single SM4 block
|
| /linux/crypto/ |
| H A D | tcrypt.c | 1686 ret = min(ret, tcrypt_test("gcm(sm4)")); in do_test() 1690 ret = min(ret, tcrypt_test("ccm(sm4)")); in do_test() 1698 ret = min(ret, tcrypt_test("cts(cbc(sm4))")); in do_test() 1786 ret = min(ret, tcrypt_test("cbcmac(sm4)")); in do_test() 1790 ret = min(ret, tcrypt_test("cmac(sm4)")); in do_test() 1794 ret = min(ret, tcrypt_test("xcbc(sm4)")); in do_test() 1828 ret = min(ret, tcrypt_test("ecb(sm4)")); in do_test() 1829 ret = min(ret, tcrypt_test("cbc(sm4)")); in do_test() 1830 ret = min(ret, tcrypt_test("ctr(sm4)")); in do_test() 1831 ret = min(ret, tcrypt_test("xts(sm4)")); in do_test() [all …]
|
| H A D | sm4.c | 3 * SM4, as specified in 4 * https://tools.ietf.org/id/draft-ribose-cfrg-sm4-10.html 12 #include <crypto/sm4.h> 111 * sm4_expandkey - Expands the SM4 key as described in GB/T 32907-2016 155 * sm4_crypt_block - Encrypt or decrypt a single SM4 block 183 MODULE_DESCRIPTION("Generic SM4 library");
|
| /linux/Documentation/translations/zh_TW/arch/arm64/ |
| H A D | elf_hwcaps.rst | 125 ID_AA64ISAR0_EL1.SM4 == 0b0001 表示有此功能。 193 ID_AA64ZFR0_EL1.SM4 == 0b0001 表示有此功能。
|
| /linux/Documentation/translations/zh_CN/arch/arm64/ |
| H A D | elf_hwcaps.rst | 122 ID_AA64ISAR0_EL1.SM4 == 0b0001 表示有此功能。 190 ID_AA64ZFR0_EL1.SM4 == 0b0001 表示有此功能。
|
| /linux/Documentation/devicetree/bindings/crypto/ |
| H A D | intel,keembay-ocs-aes.yaml | 14 hardware-accelerated AES/SM4 encryption/decryption.
|
| /linux/drivers/crypto/hisilicon/ |
| H A D | Kconfig | 36 It provides AES, SM4, and 3DES algorithms with ECB
|