mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-21 07:16:17 -04:00
use .fill to initialise Arrays
This commit is contained in:
parent
d41d56e670
commit
5b03a84be8
3 changed files with 3 additions and 14 deletions
|
@ -88,17 +88,12 @@ const Entropy = {
|
||||||
runFreqDistrib: function (input, args) {
|
runFreqDistrib: function (input, args) {
|
||||||
if (!input.length) return "No data";
|
if (!input.length) return "No data";
|
||||||
|
|
||||||
let distrib = new Array(256),
|
let distrib = new Array(256).fill(0),
|
||||||
percentages = new Array(256),
|
percentages = new Array(256),
|
||||||
len = input.length,
|
len = input.length,
|
||||||
showZeroes = args[0],
|
showZeroes = args[0],
|
||||||
i;
|
i;
|
||||||
|
|
||||||
// Initialise distrib to 0
|
|
||||||
for (i = 0; i < 256; i++) {
|
|
||||||
distrib[i] = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Count bytes
|
// Count bytes
|
||||||
for (i = 0; i < len; i++) {
|
for (i = 0; i < len; i++) {
|
||||||
distrib[input[i]]++;
|
distrib[input[i]]++;
|
||||||
|
|
|
@ -713,13 +713,9 @@ const IP = {
|
||||||
ip2 = IP._strToIpv6(range[14]);
|
ip2 = IP._strToIpv6(range[14]);
|
||||||
|
|
||||||
let t = "",
|
let t = "",
|
||||||
total = new Array(128),
|
total = new Array(128).fill(),
|
||||||
i;
|
i;
|
||||||
|
|
||||||
// Initialise total array to "0"
|
|
||||||
for (i = 0; i < 128; i++)
|
|
||||||
total[i] = "0";
|
|
||||||
|
|
||||||
for (i = 0; i < 8; i++) {
|
for (i = 0; i < 8; i++) {
|
||||||
t = (ip2[i] - ip1[i]).toString(2);
|
t = (ip2[i] - ip1[i]).toString(2);
|
||||||
if (t !== "0") {
|
if (t !== "0") {
|
||||||
|
|
|
@ -397,9 +397,7 @@ const StrUtils = {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Initialise output strings
|
// Initialise output strings
|
||||||
for (s = 0; s < samples.length; s++) {
|
outputs.fill("", 0, samples.length);
|
||||||
outputs[s] = "";
|
|
||||||
}
|
|
||||||
|
|
||||||
// Loop through each character in the first sample
|
// Loop through each character in the first sample
|
||||||
for (i = 0; i < samples[0].length; i++) {
|
for (i = 0; i < samples[0].length; i++) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue