diff options
author | Hubert Chathi <hubert@uhoreg.ca> | 2018-06-11 17:48:45 -0400 |
---|---|---|
committer | Hubert Chathi <hubert@uhoreg.ca> | 2018-06-27 16:38:45 -0400 |
commit | 128d45cc83b1378422625ea975152e1e3c9d88f6 (patch) | |
tree | c5b0840d4f1b4c49ccd6f14f032b377b424e407d /Makefile | |
parent | 6a2a2741e8563bbdc4cc2fa3ad41551d2a482d32 (diff) |
add initial implementation of basic private key encryption functionality
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -21,7 +21,7 @@ JS_TARGET := javascript/olm.js JS_EXPORTED_FUNCTIONS := javascript/exported_functions.json -PUBLIC_HEADERS := include/olm/olm.h include/olm/outbound_group_session.h include/olm/inbound_group_session.h +PUBLIC_HEADERS := include/olm/olm.h include/olm/outbound_group_session.h include/olm/inbound_group_session.h include/olm/pk.h SOURCES := $(wildcard src/*.cpp) $(wildcard src/*.c) \ lib/crypto-algorithms/sha256.c \ @@ -42,6 +42,7 @@ JS_OBJECTS := $(addprefix $(BUILD_DIR)/javascript/,$(OBJECTS)) JS_PRE := $(wildcard javascript/*pre.js) JS_POST := javascript/olm_outbound_group_session.js \ javascript/olm_inbound_group_session.js \ + javascript/olm_pk.js \ javascript/olm_post.js DOCS := tracing/README.html \ docs/megolm.html \ |