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