mirror of
https://github.com/gchq/CyberChef.git
synced 2025-05-11 08:41:32 -04:00
11 lines
199 B
JavaScript
11 lines
199 B
JavaScript
export const compressedToDecompressed = {
|
|
input: [6.5, 8],
|
|
output: [3.5, 6]
|
|
};
|
|
|
|
export const binary = {
|
|
input: [1, 1.5],
|
|
output: [3.5, 6]
|
|
};
|
|
|
|
export const entropyOfText = [3.5, 6];
|