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