mirror of
https://github.com/gchq/CyberChef.git
synced 2024-11-02 22:21:01 +01:00
35 lines
777 B
JavaScript
Executable File
35 lines
777 B
JavaScript
Executable File
/**
|
|
* NetBIOS tests.
|
|
*
|
|
* @author bwhitn [brian.m.whitney@outlook.com]
|
|
*
|
|
* @copyright Crown Copyright 2017
|
|
* @license Apache-2.0
|
|
*/
|
|
import TestRegister from "../../TestRegister.js";
|
|
|
|
TestRegister.addTests([
|
|
{
|
|
name: "Encode NetBIOS name",
|
|
input: "The NetBIOS name",
|
|
expectedOutput: "FEGIGFCAEOGFHEECEJEPFDCAGOGBGNGF",
|
|
recipeConfig: [
|
|
{
|
|
op: "Encode NetBIOS Name",
|
|
args: [65],
|
|
},
|
|
],
|
|
},
|
|
{
|
|
name: "Decode NetBIOS Name",
|
|
input: "FEGIGFCAEOGFHEECEJEPFDCAGOGBGNGF",
|
|
expectedOutput: "The NetBIOS name",
|
|
recipeConfig: [
|
|
{
|
|
op: "Decode NetBIOS Name",
|
|
args: [65],
|
|
},
|
|
],
|
|
},
|
|
]);
|