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

42 lines
946 B
JavaScript
Raw Normal View History

(function() {
'use strict';
// import web worker dependencies
2013-06-10 18:55:53 -04:00
importScripts('../../lib/require.js');
2013-03-13 11:58:46 -04:00
/**
* 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
*/
2013-04-10 11:14:19 -04:00
self.onmessage = function(e) {
2013-06-10 18:55:53 -04:00
// fetch dependencies via require.js
require(['../../require-config'], function() {
require.config({
baseUrl: '../../lib'
});
2013-06-10 18:55:53 -04:00
require(['cryptoLib/crypto-batch'], function(batch) {
2013-06-10 18:55:53 -04:00
var i = e.data,
output = null;
2013-06-10 18:55:53 -04:00
if (i.type === 'encrypt' && i.list) {
// start encryption
output = batch.encryptList(i.list);
2013-06-10 18:55:53 -04:00
} else if (i.type === 'decrypt' && i.list) {
// start decryption
output = batch.decryptList(i.list);
2013-06-10 18:55:53 -04:00
} else {
throw 'Not all arguments for web worker crypto are defined!';
}
// pass output back to main thread
self.postMessage(output);
});
});
2013-04-10 11:14:19 -04:00
};
2013-03-13 11:58:46 -04:00
}());