mail/src/js/crypto/crypto-batch-worker.js

44 lines
1.1 KiB
JavaScript

(function() {
'use strict';
// import web worker dependencies
importScripts('../../lib/forge/forge.rsa.bundle.js');
importScripts('../app-config.js');
importScripts('./crypto-batch.js');
importScripts('./aes-cbc.js');
importScripts('./util.js');
importScripts('./rsa.js');
/**
* In the web worker thread context, 'this' and 'self' can be used as a global
* variable namespace similar to the 'window' object in the main thread
*/
self.onmessage = function(e) {
var i = e.data,
output = null,
aes = new app.crypto.AesCBC(forge),
rsa = new app.crypto.RSA(forge),
util = new app.crypto.Util(),
batch = new app.crypto.CryptoBatch(aes, rsa, util);
// pass RSA keys to module
rsa.init(i.pubkeyPem, i.privkeyPem);
if (i.type === 'encrypt' && i.list) {
// start encryption
output = batch.encryptListForUser(i.list);
} else if (i.type === 'decrypt' && i.list) {
// start decryption
output = batch.decryptListForUser(i.list);
} else {
throw 'Not all arguments for web worker crypto are defined!';
}
// pass output back to main thread
self.postMessage(output);
};
}());