1 | # $Id: Makefile.kmk 102863 2024-01-13 17:15:52Z vboxsync $
|
---|
2 | ## @file
|
---|
3 | # OpenSSL Sub-Makefile.
|
---|
4 | #
|
---|
5 |
|
---|
6 | #
|
---|
7 | # Copyright (C) 2022-2023 Oracle and/or its affiliates.
|
---|
8 | #
|
---|
9 | # This file is part of VirtualBox base platform packages, as
|
---|
10 | # available from https://www.virtualbox.org.
|
---|
11 | #
|
---|
12 | # This program is free software; you can redistribute it and/or
|
---|
13 | # modify it under the terms of the GNU General Public License
|
---|
14 | # as published by the Free Software Foundation, in version 3 of the
|
---|
15 | # License.
|
---|
16 | #
|
---|
17 | # This program is distributed in the hope that it will be useful, but
|
---|
18 | # WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
19 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
20 | # General Public License for more details.
|
---|
21 | #
|
---|
22 | # You should have received a copy of the GNU General Public License
|
---|
23 | # along with this program; if not, see <https://www.gnu.org/licenses>.
|
---|
24 | #
|
---|
25 | # SPDX-License-Identifier: GPL-3.0-only
|
---|
26 | #
|
---|
27 |
|
---|
28 | SUB_DEPTH = ../../../../..
|
---|
29 | include $(KBUILD_PATH)/subheader.kmk
|
---|
30 |
|
---|
31 | LIBRARIES += providers_ciphers
|
---|
32 | providers_ciphers_TEMPLATE = SubLibCrypto
|
---|
33 | providers_ciphers_DEFS = OPENSSL_NO_DEPRECATED
|
---|
34 | providers_ciphers_SOURCES = \
|
---|
35 | cipher_aes.c \
|
---|
36 | cipher_aes_cbc_hmac_sha.c \
|
---|
37 | cipher_aes_cbc_hmac_sha1_hw.c \
|
---|
38 | cipher_aes_cbc_hmac_sha256_hw.c \
|
---|
39 | cipher_aes_ccm.c \
|
---|
40 | cipher_aes_ccm_hw.c \
|
---|
41 | cipher_aes_gcm.c \
|
---|
42 | cipher_aes_gcm_hw.c \
|
---|
43 | cipher_aes_hw.c \
|
---|
44 | cipher_aes_ocb.c \
|
---|
45 | cipher_aes_ocb_hw.c \
|
---|
46 | cipher_aes_siv.c \
|
---|
47 | cipher_aes_siv_hw.c \
|
---|
48 | cipher_aes_wrp.c \
|
---|
49 | cipher_aes_xts.c \
|
---|
50 | cipher_aes_xts_fips.c \
|
---|
51 | cipher_aes_xts_hw.c \
|
---|
52 | cipher_aria.c \
|
---|
53 | cipher_aria_ccm.c \
|
---|
54 | cipher_aria_ccm_hw.c \
|
---|
55 | cipher_aria_gcm.c \
|
---|
56 | cipher_aria_gcm_hw.c \
|
---|
57 | cipher_aria_hw.c \
|
---|
58 | cipher_blowfish.c \
|
---|
59 | cipher_blowfish_hw.c \
|
---|
60 | cipher_camellia.c \
|
---|
61 | cipher_camellia_hw.c \
|
---|
62 | cipher_cast5.c \
|
---|
63 | cipher_cast5_hw.c \
|
---|
64 | cipher_chacha20.c \
|
---|
65 | cipher_chacha20_hw.c \
|
---|
66 | cipher_chacha20_poly1305.c \
|
---|
67 | cipher_chacha20_poly1305_hw.c \
|
---|
68 | cipher_cts.c \
|
---|
69 | cipher_des.c \
|
---|
70 | cipher_des_hw.c \
|
---|
71 | cipher_desx.c \
|
---|
72 | cipher_desx_hw.c \
|
---|
73 | cipher_null.c \
|
---|
74 | cipher_rc4.c \
|
---|
75 | cipher_rc4_hmac_md5.c \
|
---|
76 | cipher_rc4_hmac_md5_hw.c \
|
---|
77 | cipher_rc4_hw.c \
|
---|
78 | cipher_seed.c \
|
---|
79 | cipher_seed_hw.c \
|
---|
80 | cipher_tdes.c \
|
---|
81 | cipher_tdes_common.c \
|
---|
82 | cipher_tdes_default.c \
|
---|
83 | cipher_tdes_default_hw.c \
|
---|
84 | cipher_tdes_hw.c \
|
---|
85 | cipher_tdes_wrap.c \
|
---|
86 | cipher_tdes_wrap_hw.c \
|
---|
87 | ciphercommon.c \
|
---|
88 | ciphercommon_block.c \
|
---|
89 | ciphercommon_ccm.c \
|
---|
90 | ciphercommon_ccm_hw.c \
|
---|
91 | ciphercommon_gcm.c \
|
---|
92 | ciphercommon_gcm_hw.c \
|
---|
93 | ciphercommon_hw.c
|
---|
94 | $(evalcall VBOX_OPENSSL_X86,providers_ciphers)
|
---|
95 |
|
---|
96 | include $(FILE_KBUILD_SUB_FOOTER)
|
---|