mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-20 14:56:19 -04:00
43 lines
900 B
JavaScript
43 lines
900 B
JavaScript
![]() |
/**
|
||
|
* @author Danh4 [dan.h4@ncsc.gov.uk]
|
||
|
* @copyright Crown Copyright 2020
|
||
|
* @license Apache-2.0
|
||
|
*/
|
||
|
|
||
|
import Operation from "../Operation.mjs";
|
||
|
import Cbor from "cbor";
|
||
|
|
||
|
/**
|
||
|
* CBOR Decode operation
|
||
|
*/
|
||
|
class CBORDecode extends Operation {
|
||
|
|
||
|
/**
|
||
|
* CBORDecode constructor
|
||
|
*/
|
||
|
constructor() {
|
||
|
super();
|
||
|
|
||
|
this.name = "CBOR Decode";
|
||
|
this.module = "Default";
|
||
|
this.description = "Decode Concise Binary Object Representation (CBOR) data format (RFC7049) to JSON.";
|
||
|
this.infoURL = "https://cbor.io";
|
||
|
this.inputType = "ArrayBuffer";
|
||
|
this.outputType = "JSON";
|
||
|
this.args = [
|
||
|
];
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param {ArrayBuffer} input
|
||
|
* @param {Object[]} args
|
||
|
* @returns {JSON}
|
||
|
*/
|
||
|
run(input, args) {
|
||
|
return Cbor.decodeFirstSync(Buffer.from(input).toString("hex"));
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
export default CBORDecode;
|