aboutsummaryrefslogtreecommitdiffstats
path: root/util-src/GNUmakefile
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2022-06-24 16:56:16 +0100
committerMatthew Wild <mwild1@gmail.com>2022-06-24 16:56:16 +0100
commitb357cf1be1572ae4298f5ef3b43134dd00bc5895 (patch)
treedb106a1f7e92f10d0911ffa4949d9e9194316318 /util-src/GNUmakefile
parent6a64363e782305d17f17bbd22bf940af00108ad2 (diff)
downloadprosody-b357cf1be1572ae4298f5ef3b43134dd00bc5895.tar.gz
prosody-b357cf1be1572ae4298f5ef3b43134dd00bc5895.zip
util.crypto: New wrapper for some operations in OpenSSL's libcrypto
Specifically, ED25519 key generation/import/export, sign/verify operations, and AES encrypt/decrypt.
Diffstat (limited to 'util-src/GNUmakefile')
-rw-r--r--util-src/GNUmakefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/util-src/GNUmakefile b/util-src/GNUmakefile
index 810f39f7..3f539387 100644
--- a/util-src/GNUmakefile
+++ b/util-src/GNUmakefile
@@ -8,7 +8,7 @@ TARGET?=../util/
ALL=encodings.so hashes.so net.so pposix.so signal.so table.so \
ringbuffer.so time.so poll.so compat.so strbitop.so \
- struct.so
+ struct.so crypto.so
ifdef RANDOM
ALL+=crand.so
@@ -28,7 +28,7 @@ clean:
encodings.o: CFLAGS+=$(IDNA_FLAGS)
encodings.so: LDLIBS+=$(IDNA_LIBS)
-hashes.so: LDLIBS+=$(OPENSSL_LIBS)
+crypto.so hashes.so: LDLIBS+=$(OPENSSL_LIBS)
crand.o: CFLAGS+=-DWITH_$(RANDOM)
crand.so: LDLIBS+=$(RANDOM_LIBS)