mirror of
https://github.com/openssl/openssl.git
synced 2024-12-21 06:09:35 +08:00
23 lines
666 B
Plaintext
23 lines
666 B
Plaintext
|
# We make separate GOAL variables for each algorithm, to make it easy to
|
||
|
# switch each to the Legacy provider when needed.
|
||
|
|
||
|
$TLS1_PRF_GOAL=../../libimplementations.a
|
||
|
$HKDF_GOAL=../../libimplementations.a
|
||
|
$KBKDF_GOAL=../../libimplementations.a
|
||
|
$PBKDF2_GOAL=../../libimplementations.a
|
||
|
$SSKDF_GOAL=../../libimplementations.a
|
||
|
|
||
|
SOURCE[$TLS1_PRF_GOAL]=tls1_prf.c
|
||
|
|
||
|
SOURCE[$HKDF_GOAL]=hkdf.c
|
||
|
|
||
|
SOURCE[$KBKDF_GOAL]=kbkdf.c
|
||
|
|
||
|
SOURCE[$PBKDF2_GOAL]=pbkdf2.c
|
||
|
# Extra code to satisfy the FIPS and non-FIPS separation.
|
||
|
# When the PBKDF2 moves to legacy, this can be removed.
|
||
|
SOURCE[../../libfips.a]=pbkdf2_fips.c
|
||
|
SOURCE[../../libnonfips.a]=pbkdf2_fips.c
|
||
|
|
||
|
SOURCE[$SSKDF_GOAL]=sskdf.c
|