wallet-core/src/cryptoWorker.ts

65 lines
1.8 KiB
TypeScript
Raw Normal View History

2016-02-19 00:49:22 +01:00
/*
This file is part of TALER
(C) 2016 GNUnet e.V.
TALER is free software; you can redistribute it and/or modify it under the
terms of the GNU General Public License as published by the Free Software
Foundation; either version 3, or (at your option) any later version.
TALER is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with
2016-07-07 17:59:29 +02:00
TALER; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
2016-02-19 00:49:22 +01:00
*/
/**
* Web worker for crypto operations.
* @author Florian Dold
*/
"use strict";
2016-11-13 23:30:18 +01:00
importScripts("/src/emscripten/taler-emscripten-lib.js",
"/src/vendor/system-csp-production.src.js");
2016-02-19 00:49:22 +01:00
// TypeScript does not allow ".js" extensions in the
// module name, so SystemJS must add it.
System.config({
2016-11-13 23:30:18 +01:00
defaultJSExtensions: true,
map: {
"src": "/src",
},
});
2016-02-19 00:49:22 +01:00
// We expect that in the manifest, the emscripten js is loaded
// becore the background page.
// Currently it is not possible to use SystemJS to load the emscripten js.
declare var Module: any;
if ("object" !== typeof Module) {
throw Error("emscripten not loaded, no 'Module' defined");
}
// Manually register the emscripten js as a SystemJS, so that
// we can use it from TypeScript by importing it.
{
2016-11-03 00:47:22 +01:00
let mod = System.newModule({Module: Module, default: Module});
2016-11-13 23:30:18 +01:00
let modName = System.normalizeSync("/src/emscripten/taler-emscripten-lib");
2016-02-19 00:49:22 +01:00
console.log("registering", modName);
System.set(modName, mod);
}
2016-11-13 23:30:18 +01:00
System.import("/src/cryptoLib")
.then((m: any) => {
2016-02-19 00:49:22 +01:00
m.main(self);
})
2016-11-13 23:30:18 +01:00
.catch((e: Error) => {
2016-02-19 00:49:22 +01:00
console.log("crypto worker failed");
console.error(e.stack);
2016-11-03 00:47:22 +01:00
});