1dc51f257SArd Biesheuvel# SPDX-License-Identifier: GPL-2.0 2dc51f257SArd Biesheuvel 324c91b62SEric Biggersaflags-thumb2-$(CONFIG_THUMB2_KERNEL) := -U__thumb2__ -D__thumb2__=1 424c91b62SEric Biggers 524c91b62SEric Biggersquiet_cmd_perlasm = PERLASM $@ 624c91b62SEric Biggers cmd_perlasm = $(PERL) $(<) > $(@) 724c91b62SEric Biggers 860e3f1e9SEric Biggersquiet_cmd_perlasm_with_args = PERLASM $@ 960e3f1e9SEric Biggers cmd_perlasm_with_args = $(PERL) $(<) void $(@) 1060e3f1e9SEric Biggers 114dcf6cadSEric Biggersobj-$(CONFIG_KUNIT) += tests/ 124dcf6cadSEric Biggers 13aacb37f5SEric Biggersobj-$(CONFIG_CRYPTO_HASH_INFO) += hash_info.o 14aacb37f5SEric Biggers 157033b937SEric Biggersobj-$(CONFIG_CRYPTO_LIB_UTILS) += libcryptoutils.o 166e78ad0bSEric Biggerslibcryptoutils-y := memneq.o utils.o 177033b937SEric Biggers 18e59c1c98SArd Biesheuvelobj-$(CONFIG_CRYPTO_LIB_AES) += libaes.o 19e59c1c98SArd Biesheuvellibaes-y := aes.o 20e59c1c98SArd Biesheuvel 21f1354404SArd Biesheuvelobj-$(CONFIG_CRYPTO_LIB_AESCFB) += libaescfb.o 22f1354404SArd Biesheuvellibaescfb-y := aescfb.o 23f1354404SArd Biesheuvel 24520af5daSArd Biesheuvelobj-$(CONFIG_CRYPTO_LIB_AESGCM) += libaesgcm.o 25520af5daSArd Biesheuvellibaesgcm-y := aesgcm.o 26520af5daSArd Biesheuvel 27dc51f257SArd Biesheuvelobj-$(CONFIG_CRYPTO_LIB_ARC4) += libarc4.o 28dc51f257SArd Biesheuvellibarc4-y := arc4.o 2904007b0eSArd Biesheuvel 3061c581a4SArd Biesheuvelobj-$(CONFIG_CRYPTO_LIB_GF128MUL) += gf128mul.o 3161c581a4SArd Biesheuvel 3239ee3970SEric Biggers################################################################################ 3339ee3970SEric Biggers 3423a16c95SEric Biggersobj-$(CONFIG_CRYPTO_LIB_BLAKE2B) += libblake2b.o 3523a16c95SEric Biggerslibblake2b-y := blake2b.o 3623a16c95SEric Biggersifeq ($(CONFIG_CRYPTO_LIB_BLAKE2B_ARCH),y) 3723a16c95SEric BiggersCFLAGS_blake2b.o += -I$(src)/$(SRCARCH) 38ba6617bdSEric Biggerslibblake2b-$(CONFIG_ARM) += arm/blake2b-neon-core.o 3923a16c95SEric Biggersendif # CONFIG_CRYPTO_LIB_BLAKE2B_ARCH 4023a16c95SEric Biggers 4123a16c95SEric Biggers################################################################################ 4223a16c95SEric Biggers 436048fdccSJason A. Donenfeld# blake2s is used by the /dev/random driver which is always builtin 4439ee3970SEric Biggersobj-y += blake2s.o 4539ee3970SEric Biggersifeq ($(CONFIG_CRYPTO_LIB_BLAKE2S_ARCH),y) 4639ee3970SEric BiggersCFLAGS_blake2s.o += -I$(src)/$(SRCARCH) 4739ee3970SEric Biggersobj-$(CONFIG_ARM) += arm/blake2s-core.o 4839ee3970SEric Biggersobj-$(CONFIG_X86) += x86/blake2s-core.o 4939ee3970SEric Biggersendif 5066d7fb94SJason A. Donenfeld 5113cecc52SEric Biggers################################################################################ 5213cecc52SEric Biggers 5313cecc52SEric Biggers# chacha20_block() is used by the /dev/random driver which is always builtin 5413cecc52SEric Biggersobj-y += chacha-block-generic.o 5513cecc52SEric Biggers 5613cecc52SEric Biggersobj-$(CONFIG_CRYPTO_LIB_CHACHA) += libchacha.o 5713cecc52SEric Biggerslibchacha-y := chacha.o 5813cecc52SEric Biggers 5913cecc52SEric Biggersifeq ($(CONFIG_CRYPTO_LIB_CHACHA_ARCH),y) 6013cecc52SEric BiggersCFLAGS_chacha.o += -I$(src)/$(SRCARCH) 6113cecc52SEric Biggers 6213cecc52SEric Biggersifeq ($(CONFIG_ARM),y) 6313cecc52SEric Biggerslibchacha-y += arm/chacha-scalar-core.o 6413cecc52SEric Biggerslibchacha-$(CONFIG_KERNEL_MODE_NEON) += arm/chacha-neon-core.o 6513cecc52SEric Biggersendif 6613cecc52SEric Biggers 6713cecc52SEric Biggerslibchacha-$(CONFIG_ARM64) += arm64/chacha-neon-core.o 6813cecc52SEric Biggers 6913cecc52SEric Biggersifeq ($(CONFIG_MIPS),y) 7013cecc52SEric Biggerslibchacha-y += mips/chacha-core.o 7113cecc52SEric BiggersAFLAGS_mips/chacha-core.o += -O2 # needed to fill branch delay slots 7213cecc52SEric Biggersendif 7313cecc52SEric Biggers 7413cecc52SEric Biggerslibchacha-$(CONFIG_PPC) += powerpc/chacha-p10le-8x.o 7513cecc52SEric Biggerslibchacha-$(CONFIG_RISCV) += riscv/chacha-riscv64-zvkb.o 7613cecc52SEric Biggerslibchacha-$(CONFIG_S390) += s390/chacha-s390.o 7713cecc52SEric Biggerslibchacha-$(CONFIG_X86) += x86/chacha-ssse3-x86_64.o \ 7813cecc52SEric Biggers x86/chacha-avx2-x86_64.o \ 7913cecc52SEric Biggers x86/chacha-avx512vl-x86_64.o 8013cecc52SEric Biggersendif # CONFIG_CRYPTO_LIB_CHACHA_ARCH 8113cecc52SEric Biggers 8213cecc52SEric Biggers################################################################################ 8313cecc52SEric Biggers 84ed20078bSArd Biesheuvelobj-$(CONFIG_CRYPTO_LIB_CHACHA20POLY1305) += libchacha20poly1305.o 85ed20078bSArd Biesheuvellibchacha20poly1305-y += chacha20poly1305.o 8640b99697SEric Biggerslibchacha20poly1305-$(CONFIG_CRYPTO_SELFTESTS) += chacha20poly1305-selftest.o 87ed20078bSArd Biesheuvel 8868546e56SEric Biggers################################################################################ 8968546e56SEric Biggers 9068546e56SEric Biggersobj-$(CONFIG_CRYPTO_LIB_CURVE25519) += libcurve25519.o 9168546e56SEric Biggerslibcurve25519-y := curve25519.o 9268546e56SEric Biggers 9368546e56SEric Biggers# Disable GCOV in odd or sensitive code 9468546e56SEric BiggersGCOV_PROFILE_curve25519.o := n 9568546e56SEric Biggers 9668546e56SEric Biggersifeq ($(CONFIG_ARCH_SUPPORTS_INT128),y) 9768546e56SEric Biggerslibcurve25519-$(CONFIG_CRYPTO_LIB_CURVE25519_GENERIC) += curve25519-hacl64.o 9868546e56SEric Biggerselse 9968546e56SEric Biggerslibcurve25519-$(CONFIG_CRYPTO_LIB_CURVE25519_GENERIC) += curve25519-fiat32.o 10068546e56SEric Biggersendif 1012f13daeeSNathan Chancellor# clang versions prior to 18 may blow out the stack with KASAN 1022b81082aSNathan Chancellorifeq ($(CONFIG_CC_IS_CLANG)_$(call clang-min-version, 180000),y_) 1032f13daeeSNathan ChancellorKASAN_SANITIZE_curve25519-hacl64.o := n 1042f13daeeSNathan Chancellorendif 105a8bdf2c4SHerbert Xu 10668546e56SEric Biggersifeq ($(CONFIG_CRYPTO_LIB_CURVE25519_ARCH),y) 10768546e56SEric BiggersCFLAGS_curve25519.o += -I$(src)/$(SRCARCH) 10868546e56SEric Biggerslibcurve25519-$(CONFIG_ARM) += arm/curve25519-core.o 10968546e56SEric Biggerslibcurve25519-$(CONFIG_PPC) += powerpc/curve25519-ppc64le_asm.o 11068546e56SEric Biggersendif 11168546e56SEric Biggers 11268546e56SEric Biggers################################################################################ 1130ed42a6fSJason A. Donenfeld 11404007b0eSArd Biesheuvelobj-$(CONFIG_CRYPTO_LIB_DES) += libdes.o 11504007b0eSArd Biesheuvellibdes-y := des.o 11601d3aee8SHans de Goede 117e1644613SEric Biggers################################################################################ 118e1644613SEric Biggers 119e1644613SEric Biggersobj-$(CONFIG_CRYPTO_LIB_MD5) += libmd5.o 120e1644613SEric Biggerslibmd5-y := md5.o 121e1644613SEric Biggersifeq ($(CONFIG_CRYPTO_LIB_MD5_ARCH),y) 122e1644613SEric BiggersCFLAGS_md5.o += -I$(src)/$(SRCARCH) 12309371e13SEric Biggerslibmd5-$(CONFIG_PPC) += powerpc/md5-asm.o 124a1848f6eSEric Biggerslibmd5-$(CONFIG_SPARC) += sparc/md5_asm.o 125e1644613SEric Biggersendif # CONFIG_CRYPTO_LIB_MD5_ARCH 126e1644613SEric Biggers 127e1644613SEric Biggers################################################################################ 128e1644613SEric Biggers 12964edcceaSEric Biggersobj-$(CONFIG_CRYPTO_LIB_MLDSA) += libmldsa.o 13064edcceaSEric Biggerslibmldsa-y := mldsa.o 13164edcceaSEric Biggers 13264edcceaSEric Biggers################################################################################ 13364edcceaSEric Biggers 13414e15c71SEric Biggersobj-$(CONFIG_CRYPTO_LIB_NH) += libnh.o 13514e15c71SEric Biggerslibnh-y := nh.o 13614e15c71SEric Biggersifeq ($(CONFIG_CRYPTO_LIB_NH_ARCH),y) 13714e15c71SEric BiggersCFLAGS_nh.o += -I$(src)/$(SRCARCH) 13829e39a11SEric Biggerslibnh-$(CONFIG_ARM) += arm/nh-neon-core.o 139*b4a8528dSEric Biggerslibnh-$(CONFIG_ARM64) += arm64/nh-neon-core.o 14014e15c71SEric Biggersendif 14114e15c71SEric Biggers 14214e15c71SEric Biggers################################################################################ 14314e15c71SEric Biggers 1449b9d4ef0SHerbert Xuobj-$(CONFIG_CRYPTO_LIB_POLY1305) += libpoly1305.o 145b646b782SEric Biggerslibpoly1305-y := poly1305.o 146b646b782SEric Biggersifeq ($(CONFIG_ARCH_SUPPORTS_INT128),y) 147b646b782SEric Biggerslibpoly1305-$(CONFIG_CRYPTO_LIB_POLY1305_GENERIC) += poly1305-donna64.o 148b646b782SEric Biggerselse 149b646b782SEric Biggerslibpoly1305-$(CONFIG_CRYPTO_LIB_POLY1305_GENERIC) += poly1305-donna32.o 150b646b782SEric Biggersendif 15148ea8c6eSArd Biesheuvel 152b646b782SEric Biggersifeq ($(CONFIG_CRYPTO_LIB_POLY1305_ARCH),y) 153b646b782SEric BiggersCFLAGS_poly1305.o += -I$(src)/$(SRCARCH) 154b646b782SEric Biggers 155b646b782SEric Biggersifeq ($(CONFIG_ARM),y) 156b646b782SEric Biggerslibpoly1305-y += arm/poly1305-core.o 157b646b782SEric Biggers$(obj)/arm/poly1305-core.S: $(src)/arm/poly1305-armv4.pl 158b646b782SEric Biggers $(call cmd,perlasm) 159b646b782SEric Biggers# massage the perlasm code a bit so we only get the NEON routine if we need it 160b646b782SEric Biggerspoly1305-aflags-$(CONFIG_CPU_V7) := -U__LINUX_ARM_ARCH__ -D__LINUX_ARM_ARCH__=5 161b646b782SEric Biggerspoly1305-aflags-$(CONFIG_KERNEL_MODE_NEON) := -U__LINUX_ARM_ARCH__ -D__LINUX_ARM_ARCH__=7 162b646b782SEric BiggersAFLAGS_arm/poly1305-core.o += $(poly1305-aflags-y) $(aflags-thumb2-y) 163b646b782SEric Biggersendif 164b646b782SEric Biggers 165b646b782SEric Biggersifeq ($(CONFIG_ARM64),y) 166b646b782SEric Biggerslibpoly1305-y += arm64/poly1305-core.o 167b646b782SEric Biggers$(obj)/arm64/poly1305-core.S: $(src)/arm64/poly1305-armv8.pl 168b646b782SEric Biggers $(call cmd,perlasm_with_args) 169b646b782SEric Biggersendif 170b646b782SEric Biggers 171b646b782SEric Biggersifeq ($(CONFIG_MIPS),y) 172b646b782SEric Biggerslibpoly1305-y += mips/poly1305-core.o 173b646b782SEric Biggerspoly1305-perlasm-flavour-$(CONFIG_32BIT) := o32 174b646b782SEric Biggerspoly1305-perlasm-flavour-$(CONFIG_64BIT) := 64 175b646b782SEric Biggersquiet_cmd_perlasm_poly1305 = PERLASM $@ 176b646b782SEric Biggers cmd_perlasm_poly1305 = $(PERL) $< $(poly1305-perlasm-flavour-y) $@ 177b646b782SEric Biggers# Use if_changed instead of cmd, in case the flavour changed. 178b646b782SEric Biggers$(obj)/mips/poly1305-core.S: $(src)/mips/poly1305-mips.pl FORCE 179b646b782SEric Biggers $(call if_changed,perlasm_poly1305) 180b646b782SEric Biggerstargets += mips/poly1305-core.S 181b646b782SEric Biggersendif 182b646b782SEric Biggers 183b646b782SEric Biggerslibpoly1305-$(CONFIG_PPC) += powerpc/poly1305-p10le_64.o 184b646b782SEric Biggers 185bef9c755SZhihang Shaoifeq ($(CONFIG_RISCV),y) 186bef9c755SZhihang Shaolibpoly1305-y += riscv/poly1305-core.o 187bef9c755SZhihang Shaopoly1305-perlasm-flavour-$(CONFIG_32BIT) := 32 188bef9c755SZhihang Shaopoly1305-perlasm-flavour-$(CONFIG_64BIT) := 64 189bef9c755SZhihang Shaoquiet_cmd_perlasm_poly1305 = PERLASM $@ 190bef9c755SZhihang Shao cmd_perlasm_poly1305 = $(PERL) $< $(poly1305-perlasm-flavour-y) $@ 191bef9c755SZhihang Shao# Use if_changed instead of cmd, in case the flavour changed. 192bef9c755SZhihang Shao$(obj)/riscv/poly1305-core.S: $(src)/riscv/poly1305-riscv.pl FORCE 193bef9c755SZhihang Shao $(call if_changed,perlasm_poly1305) 194bef9c755SZhihang Shaotargets += riscv/poly1305-core.S 195bef9c755SZhihang ShaoAFLAGS_riscv/poly1305-core.o += -Dpoly1305_init=poly1305_block_init 196bef9c755SZhihang Shaoendif 197bef9c755SZhihang Shao 198b646b782SEric Biggersifeq ($(CONFIG_X86),y) 199b646b782SEric Biggerslibpoly1305-y += x86/poly1305-x86_64-cryptogams.o 200b646b782SEric Biggers$(obj)/x86/poly1305-x86_64-cryptogams.S: $(src)/x86/poly1305-x86_64-cryptogams.pl 201b646b782SEric Biggers $(call cmd,perlasm) 202b646b782SEric Biggersendif 203b646b782SEric Biggers 204b646b782SEric Biggersendif # CONFIG_CRYPTO_LIB_POLY1305_ARCH 205b646b782SEric Biggers 206b646b782SEric Biggers# clean-files must be defined unconditionally 207b646b782SEric Biggersclean-files += arm/poly1305-core.S \ 208b646b782SEric Biggers arm64/poly1305-core.S \ 209b646b782SEric Biggers mips/poly1305-core.S \ 210bef9c755SZhihang Shao riscv/poly1305-core.S \ 211b646b782SEric Biggers x86/poly1305-x86_64-cryptogams.S 2129b9d4ef0SHerbert Xu 21390860aefSEric Biggers################################################################################ 21490860aefSEric Biggers 2153d176751SEric Biggersobj-$(CONFIG_CRYPTO_LIB_POLYVAL) += libpolyval.o 2163d176751SEric Biggerslibpolyval-y := polyval.o 2173d176751SEric Biggersifeq ($(CONFIG_CRYPTO_LIB_POLYVAL_ARCH),y) 2183d176751SEric BiggersCFLAGS_polyval.o += -I$(src)/$(SRCARCH) 21937919e23SEric Biggerslibpolyval-$(CONFIG_ARM64) += arm64/polyval-ce-core.o 2204d8da355SEric Biggerslibpolyval-$(CONFIG_X86) += x86/polyval-pclmul-avx.o 2213d176751SEric Biggersendif 2223d176751SEric Biggers 2233d176751SEric Biggers################################################################################ 2243d176751SEric Biggers 225ec8f7f48SEric Biggersobj-$(CONFIG_CRYPTO_LIB_SHA1) += libsha1.o 226ec8f7f48SEric Biggerslibsha1-y := sha1.o 22790860aefSEric Biggersifeq ($(CONFIG_CRYPTO_LIB_SHA1_ARCH),y) 22890860aefSEric BiggersCFLAGS_sha1.o += -I$(src)/$(SRCARCH) 22970cb6ca5SEric Biggersifeq ($(CONFIG_ARM),y) 23070cb6ca5SEric Biggerslibsha1-y += arm/sha1-armv4-large.o 23170cb6ca5SEric Biggerslibsha1-$(CONFIG_KERNEL_MODE_NEON) += arm/sha1-armv7-neon.o \ 23270cb6ca5SEric Biggers arm/sha1-ce-core.o 23370cb6ca5SEric Biggersendif 23400d549bbSEric Biggerslibsha1-$(CONFIG_ARM64) += arm64/sha1-ce-core.o 2356b9ae8cfSEric Biggersifeq ($(CONFIG_PPC),y) 2366b9ae8cfSEric Biggerslibsha1-y += powerpc/sha1-powerpc-asm.o 2376b9ae8cfSEric Biggerslibsha1-$(CONFIG_SPE) += powerpc/sha1-spe-asm.o 2386b9ae8cfSEric Biggersendif 239c7510599SEric Biggerslibsha1-$(CONFIG_SPARC) += sparc/sha1_asm.o 240f3d6cb3dSEric Biggerslibsha1-$(CONFIG_X86) += x86/sha1-ssse3-and-avx.o \ 241f3d6cb3dSEric Biggers x86/sha1-avx2-asm.o \ 242f3d6cb3dSEric Biggers x86/sha1-ni-asm.o 24390860aefSEric Biggersendif # CONFIG_CRYPTO_LIB_SHA1_ARCH 244463f7408SEric Biggers 245e96cb950SEric Biggers################################################################################ 246e96cb950SEric Biggers 24701d3aee8SHans de Goedeobj-$(CONFIG_CRYPTO_LIB_SHA256) += libsha256.o 24801d3aee8SHans de Goedelibsha256-y := sha256.o 249e96cb950SEric Biggersifeq ($(CONFIG_CRYPTO_LIB_SHA256_ARCH),y) 250e96cb950SEric BiggersCFLAGS_sha256.o += -I$(src)/$(SRCARCH) 25166d7fb94SJason A. Donenfeld 252e96cb950SEric Biggersifeq ($(CONFIG_ARM),y) 253e96cb950SEric Biggerslibsha256-y += arm/sha256-ce.o arm/sha256-core.o 254e96cb950SEric Biggers$(obj)/arm/sha256-core.S: $(src)/arm/sha256-armv4.pl 255e96cb950SEric Biggers $(call cmd,perlasm) 256e96cb950SEric BiggersAFLAGS_arm/sha256-core.o += $(aflags-thumb2-y) 257e96cb950SEric Biggersendif 258e96cb950SEric Biggers 259e96cb950SEric Biggersifeq ($(CONFIG_ARM64),y) 260e96cb950SEric Biggerslibsha256-y += arm64/sha256-core.o 261e96cb950SEric Biggers$(obj)/arm64/sha256-core.S: $(src)/arm64/sha2-armv8.pl 262e96cb950SEric Biggers $(call cmd,perlasm_with_args) 263e96cb950SEric Biggerslibsha256-$(CONFIG_KERNEL_MODE_NEON) += arm64/sha256-ce.o 264e96cb950SEric Biggersendif 265e96cb950SEric Biggers 266e96cb950SEric Biggerslibsha256-$(CONFIG_PPC) += powerpc/sha256-spe-asm.o 267e96cb950SEric Biggerslibsha256-$(CONFIG_RISCV) += riscv/sha256-riscv64-zvknha_or_zvknhb-zvkb.o 268e96cb950SEric Biggerslibsha256-$(CONFIG_SPARC) += sparc/sha256_asm.o 269e96cb950SEric Biggerslibsha256-$(CONFIG_X86) += x86/sha256-ssse3-asm.o \ 270e96cb950SEric Biggers x86/sha256-avx-asm.o \ 271e96cb950SEric Biggers x86/sha256-avx2-asm.o \ 272e96cb950SEric Biggers x86/sha256-ni-asm.o 273e96cb950SEric Biggersendif # CONFIG_CRYPTO_LIB_SHA256_ARCH 274e96cb950SEric Biggers 275e96cb950SEric Biggers################################################################################ 276950e5c84SEric Biggers 277b693c703SEric Biggersobj-$(CONFIG_CRYPTO_LIB_SHA512) += libsha512.o 278b693c703SEric Biggerslibsha512-y := sha512.o 279b693c703SEric Biggersifeq ($(CONFIG_CRYPTO_LIB_SHA512_ARCH),y) 280b693c703SEric BiggersCFLAGS_sha512.o += -I$(src)/$(SRCARCH) 28124c91b62SEric Biggers 28224c91b62SEric Biggersifeq ($(CONFIG_ARM),y) 28324c91b62SEric Biggerslibsha512-y += arm/sha512-core.o 28424c91b62SEric Biggers$(obj)/arm/sha512-core.S: $(src)/arm/sha512-armv4.pl 28524c91b62SEric Biggers $(call cmd,perlasm) 28624c91b62SEric BiggersAFLAGS_arm/sha512-core.o += $(aflags-thumb2-y) 28724c91b62SEric Biggersendif 28824c91b62SEric Biggers 28960e3f1e9SEric Biggersifeq ($(CONFIG_ARM64),y) 29060e3f1e9SEric Biggerslibsha512-y += arm64/sha512-core.o 29161f86c70SEric Biggers$(obj)/arm64/sha512-core.S: $(src)/arm64/sha2-armv8.pl 29260e3f1e9SEric Biggers $(call cmd,perlasm_with_args) 29360e3f1e9SEric Biggerslibsha512-$(CONFIG_KERNEL_MODE_NEON) += arm64/sha512-ce-core.o 29460e3f1e9SEric Biggersendif 295b59059a2SEric Biggers 296b59059a2SEric Biggerslibsha512-$(CONFIG_RISCV) += riscv/sha512-riscv64-zvknhb-zvkb.o 29702b35babSEric Biggerslibsha512-$(CONFIG_SPARC) += sparc/sha512_asm.o 298484c1811SEric Biggerslibsha512-$(CONFIG_X86) += x86/sha512-ssse3-asm.o \ 299484c1811SEric Biggers x86/sha512-avx-asm.o \ 300484c1811SEric Biggers x86/sha512-avx2-asm.o 301b693c703SEric Biggersendif # CONFIG_CRYPTO_LIB_SHA512_ARCH 302b693c703SEric Biggers 303e96cb950SEric Biggers################################################################################ 304e96cb950SEric Biggers 30505934472SDavid Howellsobj-$(CONFIG_CRYPTO_LIB_SHA3) += libsha3.o 30605934472SDavid Howellslibsha3-y := sha3.o 30705934472SDavid Howells 3081e29a750SEric Biggersifeq ($(CONFIG_CRYPTO_LIB_SHA3_ARCH),y) 3091e29a750SEric BiggersCFLAGS_sha3.o += -I$(src)/$(SRCARCH) 3101e29a750SEric Biggerslibsha3-$(CONFIG_ARM64) += arm64/sha3-ce-core.o 3111e29a750SEric Biggersendif # CONFIG_CRYPTO_LIB_SHA3_ARCH 3121e29a750SEric Biggers 31305934472SDavid Howells################################################################################ 31405934472SDavid Howells 3152a598d0bSHerbert Xuobj-$(CONFIG_MPILIB) += mpi/ 3164964a1d9SEric Biggers 317ac90aad0SEric Biggersobj-$(CONFIG_CRYPTO_SELFTESTS_FULL) += simd.o 318f4065b2fSHerbert Xu 319f4065b2fSHerbert Xuobj-$(CONFIG_CRYPTO_LIB_SM3) += libsm3.o 320f4065b2fSHerbert Xulibsm3-y := sm3.o 3214a32e5dcSEric Biggers 322fd7e5de4STal Zussman# clean-files must be defined unconditionally 323fd7e5de4STal Zussmanclean-files += arm/sha256-core.S arm/sha512-core.S 324fd7e5de4STal Zussmanclean-files += arm64/sha256-core.S arm64/sha512-core.S 325