2014-07-03 15:42:44 +02:00
|
|
|
############################################################################
|
|
|
|
# crypto/Makefile
|
|
|
|
#
|
2021-02-19 11:57:46 +01:00
|
|
|
# Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
# contributor license agreements. See the NOTICE file distributed with
|
|
|
|
# this work for additional information regarding copyright ownership. The
|
|
|
|
# ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
# "License"); you may not use this file except in compliance with the
|
|
|
|
# License. You may obtain a copy of the License at
|
2014-07-03 15:42:44 +02:00
|
|
|
#
|
2021-02-19 11:57:46 +01:00
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
2014-07-03 15:42:44 +02:00
|
|
|
#
|
2021-02-19 11:57:46 +01:00
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
# License for the specific language governing permissions and limitations
|
|
|
|
# under the License.
|
2014-07-03 15:42:44 +02:00
|
|
|
#
|
|
|
|
############################################################################
|
|
|
|
|
2020-05-18 21:42:11 +02:00
|
|
|
include $(TOPDIR)/Make.defs
|
2014-07-03 15:42:44 +02:00
|
|
|
|
|
|
|
ifeq ($(CONFIG_CRYPTO),y)
|
|
|
|
|
|
|
|
# Basic
|
|
|
|
|
2015-11-16 20:31:02 +01:00
|
|
|
CRYPTO_CSRCS += crypto.c testmngr.c
|
2014-07-03 15:42:44 +02:00
|
|
|
|
|
|
|
# cryptodev support
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_CRYPTO_CRYPTODEV),y)
|
2015-11-16 20:31:02 +01:00
|
|
|
CRYPTO_CSRCS += cryptodev.c
|
2023-07-26 15:09:43 +02:00
|
|
|
ifeq ($(CONFIG_CRYPTO_CRYPTODEV_SOFTWARE),y)
|
2022-07-28 11:52:21 +02:00
|
|
|
CRYPTO_CSRCS += cryptosoft.c
|
|
|
|
CRYPTO_CSRCS += xform.c
|
2023-08-13 14:54:24 +02:00
|
|
|
endif
|
2014-07-03 15:42:44 +02:00
|
|
|
endif
|
|
|
|
|
2023-08-13 14:54:24 +02:00
|
|
|
# Software crypto algorithm
|
2017-03-30 15:38:37 +02:00
|
|
|
|
2023-08-13 14:54:24 +02:00
|
|
|
ifeq ($(CONFIG_CRYPTO_SW_AES),y)
|
|
|
|
CRYPTO_CSRCS += aes.c
|
2017-03-30 15:38:37 +02:00
|
|
|
endif
|
2023-08-13 14:54:24 +02:00
|
|
|
CRYPTO_CSRCS += blake2s.c
|
|
|
|
CRYPTO_CSRCS += blf.c
|
|
|
|
CRYPTO_CSRCS += cast.c
|
|
|
|
CRYPTO_CSRCS += chachapoly.c
|
|
|
|
CRYPTO_CSRCS += ecb_enc.c
|
|
|
|
CRYPTO_CSRCS += ecb3_enc.c
|
|
|
|
CRYPTO_CSRCS += set_key.c
|
|
|
|
CRYPTO_CSRCS += md5.c
|
|
|
|
CRYPTO_CSRCS += poly1305.c
|
|
|
|
CRYPTO_CSRCS += rijndael.c
|
|
|
|
CRYPTO_CSRCS += rmd160.c
|
|
|
|
CRYPTO_CSRCS += sha1.c
|
|
|
|
CRYPTO_CSRCS += sha2.c
|
|
|
|
CRYPTO_CSRCS += gmac.c
|
|
|
|
CRYPTO_CSRCS += cmac.c
|
|
|
|
CRYPTO_CSRCS += hmac.c
|
2023-09-11 12:19:18 +02:00
|
|
|
ifeq ($(CONFIG_CRYPTO_RANDOM_POOL),y)
|
|
|
|
CRYPTO_CSRCS += idgen.c
|
|
|
|
endif
|
2023-08-13 14:54:24 +02:00
|
|
|
CRYPTO_CSRCS += key_wrap.c
|
|
|
|
CRYPTO_CSRCS += siphash.c
|
|
|
|
CRYPTO_CSRCS += hmac_buff.c
|
|
|
|
CRYPTO_CSRCS += curve25519.c
|
2023-06-25 04:03:32 +02:00
|
|
|
CRYPTO_CSRCS += bn.c
|
2017-03-30 15:38:37 +02:00
|
|
|
|
|
|
|
# Entropy pool random number generator
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_CRYPTO_RANDOM_POOL),y)
|
|
|
|
CRYPTO_CSRCS += random_pool.c
|
|
|
|
endif
|
|
|
|
|
2014-07-03 15:42:44 +02:00
|
|
|
endif # CONFIG_CRYPTO
|
|
|
|
|
2015-11-16 20:31:02 +01:00
|
|
|
ASRCS = $(CRYPTO_ASRCS)
|
|
|
|
AOBJS = $(ASRCS:.S=$(OBJEXT))
|
2014-07-03 15:42:44 +02:00
|
|
|
|
2015-11-16 20:31:02 +01:00
|
|
|
CSRCS = $(CRYPTO_CSRCS)
|
|
|
|
COBJS = $(CSRCS:.c=$(OBJEXT))
|
2014-07-03 15:42:44 +02:00
|
|
|
|
2015-11-16 20:31:02 +01:00
|
|
|
SRCS = $(ASRCS) $(CSRCS)
|
|
|
|
OBJS = $(AOBJS) $(COBJS)
|
2014-07-03 15:42:44 +02:00
|
|
|
|
2015-11-16 20:31:02 +01:00
|
|
|
BIN = libcrypto$(LIBEXT)
|
2014-07-03 15:42:44 +02:00
|
|
|
|
2015-11-16 20:31:02 +01:00
|
|
|
all: $(BIN)
|
2016-05-10 23:44:06 +02:00
|
|
|
.PHONY: depend clean distclean
|
2014-07-03 15:42:44 +02:00
|
|
|
|
|
|
|
$(AOBJS): %$(OBJEXT): %.S
|
|
|
|
$(call ASSEMBLE, $<, $@)
|
|
|
|
|
|
|
|
$(COBJS): %$(OBJEXT): %.c
|
|
|
|
$(call COMPILE, $<, $@)
|
|
|
|
|
|
|
|
$(BIN): $(OBJS)
|
|
|
|
$(call ARCHIVE, $@, $(OBJS))
|
2020-11-28 04:43:30 +01:00
|
|
|
|
2024-09-15 06:41:42 +02:00
|
|
|
makedepfile: $(CSRCS:.c=.ddc) $(ASRCS:.S=.dds)
|
|
|
|
$(call CATFILE, Make.dep, $^)
|
|
|
|
$(call DELFILE, $^)
|
|
|
|
|
2020-07-22 09:54:29 +02:00
|
|
|
.depend: Makefile $(SRCS) $(TOPDIR)$(DELIM).config
|
2020-03-23 03:44:03 +01:00
|
|
|
ifeq ($(CONFIG_CRYPTO),y)
|
2024-09-15 06:41:42 +02:00
|
|
|
$(Q) $(MAKE) makedepfile
|
2020-03-23 03:44:03 +01:00
|
|
|
endif
|
|
|
|
$(Q) touch $@
|
2014-07-03 15:42:44 +02:00
|
|
|
|
2020-03-23 03:44:03 +01:00
|
|
|
depend: .depend
|
2014-07-03 15:42:44 +02:00
|
|
|
|
|
|
|
clean:
|
|
|
|
$(call DELFILE, $(BIN))
|
|
|
|
$(call CLEAN)
|
|
|
|
|
|
|
|
distclean: clean
|
|
|
|
$(call DELFILE, Make.dep)
|
2020-03-23 03:44:03 +01:00
|
|
|
$(call DELFILE, .depend)
|
2014-07-03 15:42:44 +02:00
|
|
|
|
2017-03-30 15:38:37 +02:00
|
|
|
-include Make.dep
|