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

31 lines
718 B
JavaScript
Raw Normal View History

(function() {
'use strict';
2013-03-13 11:58:46 -04:00
// import web worker dependencies
2013-05-14 06:01:51 -04:00
importScripts('../../lib/forge/forge.rsa.bundle.js');
importScripts('../app-config.js');
importScripts('./pbkdf2.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) {
var i = e.data,
2013-03-13 11:58:46 -04:00
key = null;
if (i.password && i.keySize) {
2013-03-13 11:58:46 -04:00
// start deriving key
var pbkdf2 = new app.crypto.PBKDF2();
key = pbkdf2.getKey(i.password, i.keySize);
2013-03-13 11:58:46 -04:00
} else {
throw 'Not all arguments for web worker crypto are defined!';
}
2013-03-13 11:58:46 -04:00
// pass output back to main thread
self.postMessage(key);
2013-04-10 11:14:19 -04:00
};
2013-03-13 11:58:46 -04:00
}());