You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: src/core/operations/BLAKE2b.mjs
+4-2
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,9 @@ class BLAKE2b extends Operation {
23
23
24
24
this.name="BLAKE2b";
25
25
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.
Copy file name to clipboardexpand all lines: src/core/operations/BLAKE2s.mjs
+4-2
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,9 @@ class BLAKE2s extends Operation {
22
22
23
23
this.name="BLAKE2s";
24
24
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.
0 commit comments