mirror of
https://github.com/openssl/openssl.git
synced 2024-12-03 05:41:46 +08:00
2000281dad
Reviewed-by: Nicola Tuveri <nic.tuv@gmail.com> Reviewed-by: Tim Hudson <tjh@openssl.org> Reviewed-by: Paul Dale <ppzgs1@gmail.com> Reviewed-by: Tom Cosgrove <tom.cosgrove@arm.com> (Merged from https://github.com/openssl/openssl/pull/24047)
27 lines
607 B
Plaintext
27 lines
607 B
Plaintext
#
|
|
# To run the demos when linked with a shared library (default) ensure that
|
|
# libcrypto is on the library path. For example:
|
|
#
|
|
# LD_LIBRARY_PATH=../.. ./hkdf
|
|
|
|
PROGRAMS{noinst} = hkdf \
|
|
pbkdf2 \
|
|
scrypt \
|
|
argon2
|
|
|
|
INCLUDE[hkdf]=../../include
|
|
SOURCE[hkdf]=hkdf.c
|
|
DEPEND[hkdf]=../../libcrypto
|
|
|
|
INCLUDE[pbkdf2]=../../include
|
|
SOURCE[pbkdf2]=pbkdf2.c
|
|
DEPEND[pbkdf2]=../../libcrypto
|
|
|
|
INCLUDE[scrypt]=../../include
|
|
SOURCE[scrypt]=scrypt.c
|
|
DEPEND[scrypt]=../../libcrypto
|
|
|
|
INCLUDE[argon2]=../../include
|
|
SOURCE[argon2]=argon2.c
|
|
DEPEND[argon2]=../../libcrypto
|