mirror of
https://github.com/gchq/CyberChef.git
synced 2024-11-16 08:58:30 +01:00
41 lines
869 B
JavaScript
41 lines
869 B
JavaScript
|
/**
|
||
|
* @author n1474335 [n1474335@gmail.com]
|
||
|
* @copyright Crown Copyright 2016
|
||
|
* @license Apache-2.0
|
||
|
*/
|
||
|
|
||
|
import r from "jsrsasign";
|
||
|
import Operation from "../Operation";
|
||
|
|
||
|
/**
|
||
|
* Object Identifier to Hex operation
|
||
|
*/
|
||
|
class ObjectIdentifierToHex extends Operation {
|
||
|
|
||
|
/**
|
||
|
* ObjectIdentifierToHex constructor
|
||
|
*/
|
||
|
constructor() {
|
||
|
super();
|
||
|
|
||
|
this.name = "Object Identifier to Hex";
|
||
|
this.module = "PublicKey";
|
||
|
this.description = "Converts an object identifier (OID) into a hexadecimal string.";
|
||
|
this.inputType = "string";
|
||
|
this.outputType = "string";
|
||
|
this.args = [];
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param {string} input
|
||
|
* @param {Object[]} args
|
||
|
* @returns {string}
|
||
|
*/
|
||
|
run(input, args) {
|
||
|
return r.KJUR.asn1.ASN1Util.oidIntToHex(input);
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
export default ObjectIdentifierToHex;
|