2015-09-26 00:25:25 +00:00
|
|
|
/*
|
|
|
|
* vim: ts=4:sw=4:expandtab
|
|
|
|
*/
|
2015-01-14 23:42:01 +00:00
|
|
|
;(function() {
|
2015-04-01 20:08:09 +00:00
|
|
|
'use strict';
|
|
|
|
window.textsecure = window.textsecure || {};
|
|
|
|
window.textsecure.storage = window.textsecure.storage || {};
|
2015-09-26 00:25:25 +00:00
|
|
|
|
2016-04-22 20:39:05 +00:00
|
|
|
textsecure.storage.protocol = new SignalProtocolStore();
|
2015-01-15 20:42:32 +00:00
|
|
|
|
2016-05-02 05:31:44 +00:00
|
|
|
textsecure.ProvisioningCipher = libsignal.ProvisioningCipher;
|
|
|
|
textsecure.startWorker = libsignal.worker.startWorker;
|
|
|
|
textsecure.stopWorker = libsignal.worker.stopWorker;
|
2015-01-14 23:42:01 +00:00
|
|
|
})();
|