mirror of
https://github.com/gchq/CyberChef
synced 2025-12-15 07:43:22 +00:00
Tidied up CBOR operations
This commit is contained in:
@@ -19,9 +19,9 @@ class CBOREncode extends Operation {
|
||||
super();
|
||||
|
||||
this.name = "CBOR Encode";
|
||||
this.module = "Default";
|
||||
this.description = "2";
|
||||
this.infoURL = "https://cbor.io";
|
||||
this.module = "Serialise";
|
||||
this.description = "Concise Binary Object Representation (CBOR) is a binary data serialization format loosely based on JSON. Like JSON it allows the transmission of data objects that contain name–value pairs, but in a more concise manner. This increases processing and transfer speeds at the cost of human readability. It is defined in IETF RFC 8949.";
|
||||
this.infoURL = "https://wikipedia.org/wiki/CBOR";
|
||||
this.inputType = "JSON";
|
||||
this.outputType = "ArrayBuffer";
|
||||
this.args = [];
|
||||
|
||||
Reference in New Issue
Block a user