summaryrefslogtreecommitdiffstats
path: root/demos/cipher/Makefile
diff options
context:
space:
mode:
authorDaniel Fiala <daniel@openssl.org>2022-09-06 07:51:59 +0200
committerPauli <pauli@openssl.org>2022-09-19 08:40:27 +1000
commitbebc6c899943cc3f519501aee221c9d0eb10fcfd (patch)
tree4f4b812280f998c4090a7531de2684e695a2e11e /demos/cipher/Makefile
parent8b3ccf1cd590c3f9f63d4665106fa4defbffa51f (diff)
Add an EVP demo for AES key wrap
Fixes openssl#14119 Reviewed-by: Shane Lontis <shane.lontis@oracle.com> Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Hugo Landau <hlandau@openssl.org> Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/19141)
Diffstat (limited to 'demos/cipher/Makefile')
-rw-r--r--demos/cipher/Makefile9
1 files changed, 6 insertions, 3 deletions
diff --git a/demos/cipher/Makefile b/demos/cipher/Makefile
index b4f08a3746..81f526535e 100644
--- a/demos/cipher/Makefile
+++ b/demos/cipher/Makefile
@@ -7,18 +7,21 @@
#
# LD_LIBRARY_PATH=../.. ./aesccm
# LD_LIBRARY_PATH=../.. ./aesgcm
+# LD_LIBRARY_PATH=../.. ./aeskeywrap
+# LD_LIBRARY_PATH=../.. ./ariacbc
CFLAGS = $(OPENSSL_INCS_LOCATION)
LDFLAGS = $(OPENSSL_LIBS_LOCATION) -lssl -lcrypto
-all: aesccm aesgcm ariacbc
+all: aesccm aesgcm aeskeywrap ariacbc
aesccm: aesccm.o
aesgcm: aesgcm.o
+aeskeywrap: aeskeywrap.o
ariacbc: ariacbc.o
-aesccm aesgcm ariacbc:
+aesccm aesgcm aeskeywrap ariacbc:
$(CC) $(CFLAGS) -o $@ $< $(LDFLAGS)
clean:
- $(RM) aesccm aesgcm ariacbc *.o
+ $(RM) aesccm aesgcm aeskeywrap ariacbc *.o