diff options
author | Hubert Chathi <hubert@uhoreg.ca> | 2019-01-21 23:21:41 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-21 23:21:41 -0500 |
commit | 94f664e7256215f33639dbbad6aaf87ada082a9f (patch) | |
tree | fb9906c60b40b1ad79dbf7acd1713a250bb5d902 /Makefile | |
parent | ec2695b9c945fa577c6fc4501d65a186208ecfed (diff) |
initial implementation of short authentication string generation
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -34,7 +34,7 @@ JS_EXPORTED_FUNCTIONS := javascript/exported_functions.json JS_EXTRA_EXPORTED_RUNTIME_METHODS := ALLOC_STACK JS_EXTERNS := javascript/externs.js -PUBLIC_HEADERS := include/olm/olm.h include/olm/outbound_group_session.h include/olm/inbound_group_session.h include/olm/pk.h +PUBLIC_HEADERS := include/olm/olm.h include/olm/outbound_group_session.h include/olm/inbound_group_session.h include/olm/pk.h include/olm/sas.h SOURCES := $(wildcard src/*.cpp) $(wildcard src/*.c) \ lib/crypto-algorithms/sha256.c \ @@ -60,6 +60,7 @@ 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_sas.js \ javascript/olm_post.js # The prefix & suffix are just added onto the start & end |