2019-10-04 16:24:09 +08:00
|
|
|
# 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
|
2019-09-18 04:35:23 +08:00
|
|
|
$KRB5KDF_GOAL=../../libimplementations.a
|
2019-10-04 16:24:09 +08:00
|
|
|
$PBKDF2_GOAL=../../libimplementations.a
|
|
|
|
$SSKDF_GOAL=../../libimplementations.a
|
2019-10-04 17:28:20 +08:00
|
|
|
$SCRYPT_GOAL=../../libimplementations.a
|
|
|
|
$SSHKDF_GOAL=../../libimplementations.a
|
|
|
|
$X942KDF_GOAL=../../libimplementations.a
|
2019-10-04 16:24:09 +08:00
|
|
|
|
|
|
|
SOURCE[$TLS1_PRF_GOAL]=tls1_prf.c
|
|
|
|
|
|
|
|
SOURCE[$HKDF_GOAL]=hkdf.c
|
|
|
|
|
|
|
|
SOURCE[$KBKDF_GOAL]=kbkdf.c
|
|
|
|
|
2019-09-18 04:35:23 +08:00
|
|
|
SOURCE[$KRB5KDF_GOAL]=krb5kdf.c
|
|
|
|
|
2019-10-04 16:24:09 +08:00
|
|
|
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
|
2019-10-04 17:28:20 +08:00
|
|
|
|
|
|
|
SOURCE[$SCRYPT_GOAL]=scrypt.c
|
|
|
|
SOURCE[$SSHKDF_GOAL]=sshkdf.c
|
|
|
|
SOURCE[$X942KDF_GOAL]=x942kdf.c
|