Update libsignal-protocol v0.5.0

Renames libsignal.util to libsignal.KeyHelper.

// FREEBIE
This commit is contained in:
lilia 2016-04-28 15:07:34 -07:00
parent b762a847da
commit 92293f9da9
5 changed files with 202 additions and 220 deletions

View file

@ -12,7 +12,7 @@ describe('Protocol Wrapper', function() {
this.timeout(5000);
before(function(done) {
localStorage.clear();
libsignal.util.generateIdentityKeyPair().then(function(identityKey) {
libsignal.KeyHelper.generateIdentityKeyPair().then(function(identityKey) {
return textsecure.storage.protocol.putIdentityKey(identifier, identityKey);
}).then(done);
});