Added to Categories and updated info URL's

This commit is contained in:
h345983745 2019-03-26 20:32:42 +00:00
parent 2d7e3f180e
commit 908043fb7f
3 changed files with 5 additions and 3 deletions

View File

@ -313,7 +313,9 @@
"Adler-32 Checksum",
"CRC-16 Checksum",
"CRC-32 Checksum",
"TCP/IP Checksum"
"TCP/IP Checksum",
"BLAKE2b",
"BLAKE2s"
]
},
{

View File

@ -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 = [

View File

@ -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 = [