Skip to content

Commit bb8c305

Browse files
committed
Updated description
1 parent 3950dba commit bb8c305

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

src/core/operations/BLAKE2b.mjs

+4-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@ class BLAKE2b extends Operation {
2323

2424
this.name = "BLAKE2b";
2525
this.module = "Hashing";
26-
this.description = "Performs BLAKE2b hashing on the input. Returns the output HEX encoded.";
26+
this.description = `Performs BLAKE2b hashing on the input.
27+
<br><br> BLAKE2b is a flavour of the BLAKE cryptographic hash function that is optimized for 64-bit platforms and produces digests of any size between 1 and 64 bytes.
28+
<br><br> Supports the use of an optional key.`;
2729
this.infoURL = "https://wikipedia.org/wiki/BLAKE_(hash_function)#BLAKE2b_algorithm";
2830
this.inputType = "string";
2931
this.outputType = "string";
@@ -56,7 +58,7 @@ class BLAKE2b extends Operation {
5658
if (key.length === 0){
5759
key = null;
5860
} else if (key.length > 64){
59-
throw new OperationError(["Key cannot be greater than 64 bytes", "It is currently " + key.length +" bytes."].join("\n"));
61+
throw new OperationError(["Key cannot be greater than 64 bytes", "It is currently " + key.length + " bytes."].join("\n"));
6062
}
6163
switch (outFormat) {
6264
case "Hex":

src/core/operations/BLAKE2s.mjs

+4-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,9 @@ class BLAKE2s extends Operation {
2222

2323
this.name = "BLAKE2s";
2424
this.module = "Hashing";
25-
this.description = "Performs BLAKE2s hashing on the input. Returns the output HEX encoded.";
25+
this.description = `Performs BLAKE2s hashing on the input.
26+
<br><br> BLAKE2s is a flavour of the BLAKE cryptographic hash function that is optimized for 8 to 32-bit platforms and produces digests of any size between 1 and 32 bytes.
27+
<br><br> Supports the use of an optional key.`;
2628
this.infoURL = "https://wikipedia.org/wiki/BLAKE_(hash_function)#BLAKE2";
2729
this.inputType = "string";
2830
this.outputType = "string";
@@ -56,7 +58,7 @@ class BLAKE2s extends Operation {
5658
if (key.length === 0){
5759
key = null;
5860
} else if (key.length > 32){
59-
throw new OperationError(["Key cannot be greater than 32 bytes", "It is currently " + key.length +" bytes."].join("\n"));
61+
throw new OperationError(["Key cannot be greater than 32 bytes", "It is currently " + key.length + " bytes."].join("\n"));
6062
}
6163
switch (outFormat) {
6264
case "Hex":

0 commit comments

Comments
 (0)