~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/arch/x86/crypto/Makefile

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 # SPDX-License-Identifier: GPL-2.0
  2 #
  3 # x86 crypto algorithms
  4 
  5 obj-$(CONFIG_CRYPTO_TWOFISH_586) += twofish-i586.o
  6 twofish-i586-y := twofish-i586-asm_32.o twofish_glue.o
  7 obj-$(CONFIG_CRYPTO_TWOFISH_X86_64) += twofish-x86_64.o
  8 twofish-x86_64-y := twofish-x86_64-asm_64.o twofish_glue.o
  9 obj-$(CONFIG_CRYPTO_TWOFISH_X86_64_3WAY) += twofish-x86_64-3way.o
 10 twofish-x86_64-3way-y := twofish-x86_64-asm_64-3way.o twofish_glue_3way.o
 11 obj-$(CONFIG_CRYPTO_TWOFISH_AVX_X86_64) += twofish-avx-x86_64.o
 12 twofish-avx-x86_64-y := twofish-avx-x86_64-asm_64.o twofish_avx_glue.o
 13 
 14 obj-$(CONFIG_CRYPTO_SERPENT_SSE2_586) += serpent-sse2-i586.o
 15 serpent-sse2-i586-y := serpent-sse2-i586-asm_32.o serpent_sse2_glue.o
 16 obj-$(CONFIG_CRYPTO_SERPENT_SSE2_X86_64) += serpent-sse2-x86_64.o
 17 serpent-sse2-x86_64-y := serpent-sse2-x86_64-asm_64.o serpent_sse2_glue.o
 18 obj-$(CONFIG_CRYPTO_SERPENT_AVX_X86_64) += serpent-avx-x86_64.o
 19 serpent-avx-x86_64-y := serpent-avx-x86_64-asm_64.o serpent_avx_glue.o
 20 obj-$(CONFIG_CRYPTO_SERPENT_AVX2_X86_64) += serpent-avx2.o
 21 serpent-avx2-y := serpent-avx2-asm_64.o serpent_avx2_glue.o
 22 
 23 obj-$(CONFIG_CRYPTO_DES3_EDE_X86_64) += des3_ede-x86_64.o
 24 des3_ede-x86_64-y := des3_ede-asm_64.o des3_ede_glue.o
 25 
 26 obj-$(CONFIG_CRYPTO_CAMELLIA_X86_64) += camellia-x86_64.o
 27 camellia-x86_64-y := camellia-x86_64-asm_64.o camellia_glue.o
 28 obj-$(CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64) += camellia-aesni-avx-x86_64.o
 29 camellia-aesni-avx-x86_64-y := camellia-aesni-avx-asm_64.o camellia_aesni_avx_glue.o
 30 obj-$(CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64) += camellia-aesni-avx2.o
 31 camellia-aesni-avx2-y := camellia-aesni-avx2-asm_64.o camellia_aesni_avx2_glue.o
 32 
 33 obj-$(CONFIG_CRYPTO_BLOWFISH_X86_64) += blowfish-x86_64.o
 34 blowfish-x86_64-y := blowfish-x86_64-asm_64.o blowfish_glue.o
 35 
 36 obj-$(CONFIG_CRYPTO_CAST5_AVX_X86_64) += cast5-avx-x86_64.o
 37 cast5-avx-x86_64-y := cast5-avx-x86_64-asm_64.o cast5_avx_glue.o
 38 
 39 obj-$(CONFIG_CRYPTO_CAST6_AVX_X86_64) += cast6-avx-x86_64.o
 40 cast6-avx-x86_64-y := cast6-avx-x86_64-asm_64.o cast6_avx_glue.o
 41 
 42 obj-$(CONFIG_CRYPTO_AEGIS128_AESNI_SSE2) += aegis128-aesni.o
 43 aegis128-aesni-y := aegis128-aesni-asm.o aegis128-aesni-glue.o
 44 
 45 obj-$(CONFIG_CRYPTO_CHACHA20_X86_64) += chacha-x86_64.o
 46 chacha-x86_64-y := chacha-avx2-x86_64.o chacha-ssse3-x86_64.o chacha_glue.o
 47 chacha-x86_64-$(CONFIG_AS_AVX512) += chacha-avx512vl-x86_64.o
 48 
 49 obj-$(CONFIG_CRYPTO_AES_NI_INTEL) += aesni-intel.o
 50 aesni-intel-y := aesni-intel_asm.o aesni-intel_glue.o
 51 aesni-intel-$(CONFIG_64BIT) += aes_ctrby8_avx-x86_64.o \
 52                                aes-gcm-aesni-x86_64.o \
 53                                aes-xts-avx-x86_64.o
 54 ifeq ($(CONFIG_AS_VAES)$(CONFIG_AS_VPCLMULQDQ),yy)
 55 aesni-intel-$(CONFIG_64BIT) += aes-gcm-avx10-x86_64.o
 56 endif
 57 
 58 obj-$(CONFIG_CRYPTO_SHA1_SSSE3) += sha1-ssse3.o
 59 sha1-ssse3-y := sha1_avx2_x86_64_asm.o sha1_ssse3_asm.o sha1_ssse3_glue.o
 60 sha1-ssse3-$(CONFIG_AS_SHA1_NI) += sha1_ni_asm.o
 61 
 62 obj-$(CONFIG_CRYPTO_SHA256_SSSE3) += sha256-ssse3.o
 63 sha256-ssse3-y := sha256-ssse3-asm.o sha256-avx-asm.o sha256-avx2-asm.o sha256_ssse3_glue.o
 64 sha256-ssse3-$(CONFIG_AS_SHA256_NI) += sha256_ni_asm.o
 65 
 66 obj-$(CONFIG_CRYPTO_SHA512_SSSE3) += sha512-ssse3.o
 67 sha512-ssse3-y := sha512-ssse3-asm.o sha512-avx-asm.o sha512-avx2-asm.o sha512_ssse3_glue.o
 68 
 69 obj-$(CONFIG_CRYPTO_BLAKE2S_X86) += libblake2s-x86_64.o
 70 libblake2s-x86_64-y := blake2s-core.o blake2s-glue.o
 71 
 72 obj-$(CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL) += ghash-clmulni-intel.o
 73 ghash-clmulni-intel-y := ghash-clmulni-intel_asm.o ghash-clmulni-intel_glue.o
 74 
 75 obj-$(CONFIG_CRYPTO_POLYVAL_CLMUL_NI) += polyval-clmulni.o
 76 polyval-clmulni-y := polyval-clmulni_asm.o polyval-clmulni_glue.o
 77 
 78 obj-$(CONFIG_CRYPTO_CRC32C_INTEL) += crc32c-intel.o
 79 crc32c-intel-y := crc32c-intel_glue.o
 80 crc32c-intel-$(CONFIG_64BIT) += crc32c-pcl-intel-asm_64.o
 81 
 82 obj-$(CONFIG_CRYPTO_CRC32_PCLMUL) += crc32-pclmul.o
 83 crc32-pclmul-y := crc32-pclmul_asm.o crc32-pclmul_glue.o
 84 
 85 obj-$(CONFIG_CRYPTO_CRCT10DIF_PCLMUL) += crct10dif-pclmul.o
 86 crct10dif-pclmul-y := crct10dif-pcl-asm_64.o crct10dif-pclmul_glue.o
 87 
 88 obj-$(CONFIG_CRYPTO_POLY1305_X86_64) += poly1305-x86_64.o
 89 poly1305-x86_64-y := poly1305-x86_64-cryptogams.o poly1305_glue.o
 90 targets += poly1305-x86_64-cryptogams.S
 91 
 92 obj-$(CONFIG_CRYPTO_NHPOLY1305_SSE2) += nhpoly1305-sse2.o
 93 nhpoly1305-sse2-y := nh-sse2-x86_64.o nhpoly1305-sse2-glue.o
 94 obj-$(CONFIG_CRYPTO_NHPOLY1305_AVX2) += nhpoly1305-avx2.o
 95 nhpoly1305-avx2-y := nh-avx2-x86_64.o nhpoly1305-avx2-glue.o
 96 
 97 obj-$(CONFIG_CRYPTO_CURVE25519_X86) += curve25519-x86_64.o
 98 
 99 obj-$(CONFIG_CRYPTO_SM3_AVX_X86_64) += sm3-avx-x86_64.o
100 sm3-avx-x86_64-y := sm3-avx-asm_64.o sm3_avx_glue.o
101 
102 obj-$(CONFIG_CRYPTO_SM4_AESNI_AVX_X86_64) += sm4-aesni-avx-x86_64.o
103 sm4-aesni-avx-x86_64-y := sm4-aesni-avx-asm_64.o sm4_aesni_avx_glue.o
104 
105 obj-$(CONFIG_CRYPTO_SM4_AESNI_AVX2_X86_64) += sm4-aesni-avx2-x86_64.o
106 sm4-aesni-avx2-x86_64-y := sm4-aesni-avx2-asm_64.o sm4_aesni_avx2_glue.o
107 
108 obj-$(CONFIG_CRYPTO_ARIA_AESNI_AVX_X86_64) += aria-aesni-avx-x86_64.o
109 aria-aesni-avx-x86_64-y := aria-aesni-avx-asm_64.o aria_aesni_avx_glue.o
110 
111 obj-$(CONFIG_CRYPTO_ARIA_AESNI_AVX2_X86_64) += aria-aesni-avx2-x86_64.o
112 aria-aesni-avx2-x86_64-y := aria-aesni-avx2-asm_64.o aria_aesni_avx2_glue.o
113 
114 obj-$(CONFIG_CRYPTO_ARIA_GFNI_AVX512_X86_64) += aria-gfni-avx512-x86_64.o
115 aria-gfni-avx512-x86_64-y := aria-gfni-avx512-asm_64.o aria_gfni_avx512_glue.o
116 
117 quiet_cmd_perlasm = PERLASM $@
118       cmd_perlasm = $(PERL) $< > $@
119 $(obj)/%.S: $(src)/%.pl FORCE
120         $(call if_changed,perlasm)
121 
122 # Disable GCOV in odd or sensitive code
123 GCOV_PROFILE_curve25519-x86_64.o := n

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php