openssl/providers/implementations/macs/build.info
Richard Levitte e42cf7180b Providers: move default kdfs,macs
From providers/default/ to providers/implementations/

Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/10088)
2019-10-10 14:12:15 +02:00

33 lines
836 B
Plaintext

# We make separate GOAL variables for each algorithm, to make it easy to
# switch each to the Legacy provider when needed.
$GMAC_GOAL=../../libimplementations.a
$HMAC_GOAL=../../libimplementations.a
$KMAC_GOAL=../../libimplementations.a
$CMAC_GOAL=../../libimplementations.a
$BLAKE2_GOAL=../../libimplementations.a
$SIPHASH_GOAL=../../libimplementations.a
$POLY1305_GOAL=../../libimplementations.a
SOURCE[$GMAC_GOAL]=gmac_prov.c
SOURCE[$HMAC_GOAL]=hmac_prov.c
SOURCE[$KMAC_GOAL]=kmac_prov.c
IF[{- !$disabled{cmac} -}]
SOURCE[$CMAC_GOAL]=cmac_prov.c
ENDIF
$GOAL=../../libimplementations.a
IF[{- !$disabled{blake2} -}]
SOURCE[$BLAKE2_GOAL]=blake2b_mac.c blake2s_mac.c
ENDIF
IF[{- !$disabled{siphash} -}]
SOURCE[$SIPHASH_GOAL]=siphash_prov.c
ENDIF
IF[{- !$disabled{poly1305} -}]
SOURCE[$POLY1305_GOAL]=poly1305_prov.c
ENDIF