Skip to content
This repository has been archived by the owner on Aug 5, 2021. It is now read-only.

Added some helpful linking to README #69

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down Expand Up @@ -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";
Expand Down