1
0
mirror of https://github.com/moparisthebest/mail synced 2024-08-13 16:43:47 -04:00
mail/src/js/crypto/aes-worker.js

42 lines
1009 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/aes-cbc'], function(aes) {
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.plaintext && i.key && i.iv) {
// start encryption
output = aes.encrypt(i.plaintext, i.key, i.iv);
2013-06-10 18:55:53 -04:00
} else if (i.type === 'decrypt' && i.ciphertext && i.key && i.iv) {
// start decryption
output = aes.decrypt(i.ciphertext, i.key, i.iv);
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
}());