summaryrefslogtreecommitdiffstats
path: root/demos/signature/Makefile
diff options
context:
space:
mode:
authorslontis <shane.lontis@oracle.com>2023-08-29 18:02:14 +1000
committerHugo Landau <hlandau@openssl.org>2023-09-01 10:09:56 +0100
commitb544c72f3755c0ea51408d3118821a1ac126c070 (patch)
tree036e4527f5fec3755dc127417cd945e3b517cdcd /demos/signature/Makefile
parent3961991593f788b3efb2a27563d358c7c58f854c (diff)
Add ED25519 Signature demo.
Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Tom Cosgrove <tom.cosgrove@arm.com> Reviewed-by: Hugo Landau <hlandau@openssl.org> (Merged from https://github.com/openssl/openssl/pull/21883)
Diffstat (limited to 'demos/signature/Makefile')
-rw-r--r--demos/signature/Makefile11
1 files changed, 8 insertions, 3 deletions
diff --git a/demos/signature/Makefile b/demos/signature/Makefile
index 394eef6d42..2a7c196007 100644
--- a/demos/signature/Makefile
+++ b/demos/signature/Makefile
@@ -1,23 +1,28 @@
#
# To run the demos when linked with a shared library (default):
#
-# LD_LIBRARY_PATH=../.. ./EVP_Signature_demo
+# LD_LIBRARY_PATH=../.. ./EVP_EC_Signature_demo
+# LD_LIBRARY_PATH=../.. ./EVP_DSA_Signature_demo
+# LD_LIBRARY_PATH=../.. ./EVP_ED_Signature_demo
+# LD_LIBRARY_PATH=../.. ./rsa_pss_direct
+# LD_LIBRARY_PATH=../.. ./rsa_pss_hash
CFLAGS = -I../../include -g -Wall
LDFLAGS = -L../..
LDLIBS = -lcrypto
-all: EVP_EC_Signature_demo EVP_DSA_Signature_demo rsa_pss_direct rsa_pss_hash
+all: EVP_EC_Signature_demo EVP_DSA_Signature_demo EVP_ED_Signature_demo rsa_pss_direct rsa_pss_hash
%.o: %.c
$(CC) $(CFLAGS) -c $<
EVP_EC_Signature_demo: EVP_EC_Signature_demo.o
EVP_DSA_Signature_demo: EVP_DSA_Signature_demo.o
+EVP_ED_Signature_demo: EVP_ED_Signature_demo.o
rsa_pss_direct: rsa_pss_direct.o
rsa_pss_hash: rsa_pss_hash.o
test: ;
clean:
- $(RM) *.o EVP_EC_Signature_demo EVP_DSA_Signature_demo rsa_pss_direct rsa_pss_hash
+ $(RM) *.o EVP_EC_Signature_demo EVP_DSA_Signature_demo EVP_ED_Signature_demo rsa_pss_direct rsa_pss_hash