mirror of
https://github.com/openssl/openssl.git
synced 2024-12-21 06:09:35 +08:00
7c214f1092
From providers/{common,default,legacy}/ to providers/implementations/ However, providers/common/digests/digest_common.c stays where it is, because it's support code rather than an implementation. To better support all kinds of implementations with common code, we add the library providers/libcommon.a. Code that ends up in this library must be FIPS agnostic. While we're moving things around, though, we move digestscommon.h from providers/common/include/internal to providers/common/include/prov, thereby starting on a provider specific include structure, which follows the line of thoughts of the recent header file reorganization. We modify the affected '#include "internal/something.h"' to '#include "prov/something.h"'. Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/10088)
53 lines
1.2 KiB
Plaintext
53 lines
1.2 KiB
Plaintext
# We make separate GOAL variables for each algorithm, to make it easy to
|
|
# switch each to the Legacy provider when needed.
|
|
|
|
$SHA1_GOAL=../../libimplementations.a
|
|
$SHA2_GOAL=../../libimplementations.a
|
|
$SHA3_GOAL=../../libimplementations.a
|
|
$BLAKE2_GOAL=../../libimplementations.a
|
|
$SM3_GOAL=../../libimplementations.a
|
|
$MD5_GOAL=../../libimplementations.a
|
|
|
|
$MD2_GOAL=../../liblegacy.a
|
|
$MD4_GOAL=../../liblegacy.a
|
|
$MDC2_GOAL=../../liblegacy.a
|
|
$WHIRLPOOL_GOAL=../../liblegacy.a
|
|
$RIPEMD_GOAL=../../liblegacy.a
|
|
|
|
SOURCE[$SHA2_GOAL]=sha2_prov.c
|
|
SOURCE[$SHA3_GOAL]=sha3_prov.c
|
|
|
|
$GOAL=../../libimplementations.a
|
|
|
|
IF[{- !$disabled{blake2} -}]
|
|
SOURCE[$BLAKE2_GOAL]=blake2_prov.c blake2b_prov.c blake2s_prov.c
|
|
ENDIF
|
|
|
|
IF[{- !$disabled{sm3} -}]
|
|
SOURCE[$SM3_GOAL]=sm3_prov.c
|
|
ENDIF
|
|
|
|
IF[{- !$disabled{md5} -}]
|
|
SOURCE[$MD5_GOAL]=md5_prov.c md5_sha1_prov.c
|
|
ENDIF
|
|
|
|
IF[{- !$disabled{md2} -}]
|
|
SOURCE[$MD2_GOAL]=md2_prov.c
|
|
ENDIF
|
|
|
|
IF[{- !$disabled{md4} -}]
|
|
SOURCE[$MD4_GOAL]=md4_prov.c
|
|
ENDIF
|
|
|
|
IF[{- !$disabled{mdc2} -}]
|
|
SOURCE[$MDC2_GOAL]=mdc2_prov.c
|
|
ENDIF
|
|
|
|
IF[{- !$disabled{whirlpool} -}]
|
|
SOURCE[$WHIRLPOOL_GOAL]=wp_prov.c
|
|
ENDIF
|
|
|
|
IF[{- !$disabled{rmd160} -}]
|
|
SOURCE[$RIPEMD_GOAL]=ripemd_prov.c
|
|
ENDIF
|