From 908043fb7f774518e9b9d8e57766417fb9367931 Mon Sep 17 00:00:00 2001 From: h345983745 Date: Tue, 26 Mar 2019 20:32:42 +0000 Subject: [PATCH] Added to Categories and updated info URL's --- src/core/config/Categories.json | 4 +++- src/core/operations/BLAKE2b.mjs | 2 +- src/core/operations/BLAKE2s.mjs | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/src/core/config/Categories.json b/src/core/config/Categories.json index 2fe8e8f7..ea7ca18d 100755 --- a/src/core/config/Categories.json +++ b/src/core/config/Categories.json @@ -313,7 +313,9 @@ "Adler-32 Checksum", "CRC-16 Checksum", "CRC-32 Checksum", - "TCP/IP Checksum" + "TCP/IP Checksum", + "BLAKE2b", + "BLAKE2s" ] }, { diff --git a/src/core/operations/BLAKE2b.mjs b/src/core/operations/BLAKE2b.mjs index a7cd9b51..5be45e70 100644 --- a/src/core/operations/BLAKE2b.mjs +++ b/src/core/operations/BLAKE2b.mjs @@ -21,7 +21,7 @@ class BLAKE2b extends Operation { this.name = "BLAKE2b"; this.module = "Hashing"; this.description = "Performs BLAKE2b hashing on the input. Returns the output HEX encoded."; - this.infoURL = "https://en.wikipedia.org/wiki/BLAKE_(hash_function)#BLAKE2"; + this.infoURL = "https://wikipedia.org/wiki/BLAKE_(hash_function)#BLAKE2b_algorithm"; this.inputType = "string"; this.outputType = "string"; this.args = [ diff --git a/src/core/operations/BLAKE2s.mjs b/src/core/operations/BLAKE2s.mjs index a8237397..bb9402f6 100644 --- a/src/core/operations/BLAKE2s.mjs +++ b/src/core/operations/BLAKE2s.mjs @@ -21,7 +21,7 @@ class BLAKE2s extends Operation { this.name = "BLAKE2s"; this.module = "Hashing"; this.description = "Performs BLAKE2s hashing on the input. Returns the output HEX encoded."; - this.infoURL = "https://en.wikipedia.org/wiki/BLAKE_(hash_function)#BLAKE2"; + this.infoURL = "https://wikipedia.org/wiki/BLAKE_(hash_function)#BLAKE2"; this.inputType = "string"; this.outputType = "string"; this.args = [