mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-20 06:55:08 -04:00
XOR Brute Force operation now has a variable key length
This commit is contained in:
parent
d68523a54e
commit
cb6708c02e
3 changed files with 44 additions and 20 deletions
|
@ -112,7 +112,7 @@ function loadRequiredModules(recipeConfig) {
|
|||
|
||||
if (!OpModules.hasOwnProperty(module)) {
|
||||
console.log("Loading module " + module);
|
||||
sendStatusMessage("Loading module " + module);
|
||||
self.sendStatusMessage("Loading module " + module);
|
||||
self.importScripts(self.docURL + "/" + module + ".js");
|
||||
}
|
||||
});
|
||||
|
@ -124,9 +124,9 @@ function loadRequiredModules(recipeConfig) {
|
|||
*
|
||||
* @param {string} msg
|
||||
*/
|
||||
function sendStatusMessage(msg) {
|
||||
self.sendStatusMessage = function(msg) {
|
||||
self.postMessage({
|
||||
action: "statusMessage",
|
||||
data: msg
|
||||
});
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue