From e9a9216cc4f614972a3e0f49de248753ca84b360 Mon Sep 17 00:00:00 2001 From: yohanmishkin Date: Wed, 2 Oct 2019 17:34:54 -0400 Subject: [PATCH] Added some helpful linking to README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2eec11f..3a7e68f 100644 --- a/README.md +++ b/README.md @@ -106,7 +106,7 @@ KeyHelper.generateSignedPreKey(identityKeyPair, keyId).then(function(signedPreKe A libsignal client needs to implement a storage interface that will manage loading and storing of identity, prekeys, signed prekeys, and session state. -See `test/InMemorySignalProtocolStore.js` for an example. +See [`test/InMemorySignalProtocolStore.js`](./test/InMemorySignalProtocolStore.js) for an example. Once this is implemented, building a session is fairly straightforward: @@ -146,7 +146,7 @@ promise.catch(function onerror(error) { ### Encrypting Once you have a session established with an address, you can encrypt messages -using SessionCipher. +using [`SessionCipher`](./src/SessionCipher.js). ```js var plaintext = "Hello world";