From 944842d4eb2695db5b463b48c531558fb4732085 Mon Sep 17 00:00:00 2001 From: j433866 Date: Mon, 8 Jul 2019 16:44:36 +0100 Subject: [PATCH] Improve description and add to Categories --- src/core/config/Categories.json | 3 ++- src/core/operations/ParseSSHHostKey.mjs | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/core/config/Categories.json b/src/core/config/Categories.json index 2d194c37..ae5c68ed 100755 --- a/src/core/config/Categories.json +++ b/src/core/config/Categories.json @@ -122,7 +122,8 @@ "PGP Encrypt", "PGP Decrypt", "PGP Encrypt and Sign", - "PGP Decrypt and Verify" + "PGP Decrypt and Verify", + "Parse SSH Host Key" ] }, { diff --git a/src/core/operations/ParseSSHHostKey.mjs b/src/core/operations/ParseSSHHostKey.mjs index fe055496..f83f6536 100644 --- a/src/core/operations/ParseSSHHostKey.mjs +++ b/src/core/operations/ParseSSHHostKey.mjs @@ -23,7 +23,7 @@ class ParseSSHHostKey extends Operation { this.name = "Parse SSH Host Key"; this.module = "Default"; - this.description = "Parses a SSH host key. The key can be in either Hex or Base64."; + this.description = "Parses a SSH host key and extracts fields from it.
The key type can be:The key format can be either Hex or Base64."; this.infoURL = "https://wikipedia.org/wiki/Secure_Shell"; this.inputType = "string"; this.outputType = "string";